Mercurial > emacs
annotate lwlib/lwlib-utils.h @ 49995:a0e8a85259ed
Version 2.0.30 released.
Replace term "path" with "localname" unless it is used for a
search path.
(tramp-handle-expand-file-name): Allow ".." to cross host
boundaries.
(tramp-open-connection-setup-interactive-shell): Unset $ENV in
addition to setting $PS1 when starting the Bourne-ish shell. Some
sh implementations (eg, bash when called as sh) read the file
named there on startup, which could clobber $PS1.
(tramp-do-copy-or-rename-file-one-local): New function. Not
implemented. Not used. Should invoke rcp or scp directly to keep
the time.
author | Kai Großjohann <kgrossjo@eu.uu.net> |
---|---|
date | Fri, 28 Feb 2003 18:28:47 +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_ */ |