Mercurial > emacs
annotate lwlib/lwlib-utils.h @ 47028:0919c09730ad
(file-name-shadow-properties-custom-type): Renamed from
`read-file-name-electric-shadow-properties-custom-type'. Change name of face.
(file-name-shadow-properties): Renamed from
`read-file-name-electric-shadow-properties'.
(file-name-shadow-tty-properties): Renamed from
`read-file-name-electric-shadow-tty-properties'.
(file-name-shadow): Renamed from `read-file-name-electric-shadow'.
(rfn-eshadow-setup-minibuffer): Update references to renamed variables.
(file-name-shadow-mode): Renamed from `read-file-name-electric-shadow-mode'.
Update references to renamed variables.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Sun, 25 Aug 2002 08:25:00 +0000 |
parents | 6ed38ee607e9 |
children | 695cf19ef79e |
rev | line source |
---|---|
5626 | 1 #ifndef _LWLIB_UTILS_H_ |
2 #define _LWLIB_UTILS_H_ | |
3 | |
29466 | 4 void XtNoClearRefreshWidget __P ((Widget)); |
5626 | 5 |
29466 | 6 typedef void (*XtApplyToWidgetsProc) __P ((Widget, XtPointer)); |
7 typedef void* (*XtApplyUntilToWidgetsProc) __P ((Widget, XtPointer)); | |
5626 | 8 |
29466 | 9 void XtApplyToWidgets __P ((Widget, XtApplyToWidgetsProc, XtPointer)); |
10 void *XtApplyUntilToWidgets __P ((Widget, XtApplyUntilToWidgetsProc, XtPointer)); | |
5626 | 11 |
29466 | 12 Widget *XtCompositeChildren __P ((Widget, unsigned int *)); |
5626 | 13 |
14 /* returns True is the widget is being destroyed, False otherwise */ | |
15 Boolean | |
29466 | 16 XtWidgetBeingDestroyedP __P ((Widget widget)); |
5626 | 17 |
29466 | 18 void XtSafelyDestroyWidget __P ((Widget)); |
5626 | 19 |
20 #endif /* _LWLIB_UTILS_H_ */ |