Mercurial > emacs
annotate lwlib/lwlib-utils.h @ 20137:8e6a173fcd9f
(c-beginning-of-statement):
Fixes in sentence movement to properly
handle M-e moving forward into a comment when looking at preceding
whitespace, and M-a moving backward into comment when looking at
following whitespace.
Uncommented the looking-at call in the
sentence-flag clause so that moving by forward-sentence when looking
at the beginning of a comment works again. A previous log message in
cc-mode.el indicates this was commented out "because
c-beginning-of-statement-1 should do the right thing", but clearly it
doesn't.
I don't know if this breaks something else, because I can't figure out
why it was commented out in the first place.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 23 Oct 1997 07:32:37 +0000 |
parents | 118a6ad56ae0 |
children | 6ed38ee607e9 |
rev | line source |
---|---|
5626 | 1 #ifndef _LWLIB_UTILS_H_ |
2 #define _LWLIB_UTILS_H_ | |
3 | |
5707 | 4 void XtNoClearRefreshWidget (/* Widget */); |
5626 | 5 |
5707 | 6 typedef void (*XtApplyToWidgetsProc) (/* Widget, XtPointer */); |
7 typedef void* (*XtApplyUntilToWidgetsProc) (/* Widget, XtPointer */); | |
5626 | 8 |
5707 | 9 void XtApplyToWidgets (/* Widget, XtApplyToWidgetsProc, XtPointer */); |
10 void *XtApplyUntilToWidgets (/* Widget, XtApplyUntilToWidgetsProc, XtPointer */); | |
5626 | 11 |
5707 | 12 Widget *XtCompositeChildren (/* Widget, unsigned int * */); |
5626 | 13 |
14 /* returns True is the widget is being destroyed, False otherwise */ | |
15 Boolean | |
5707 | 16 XtWidgetBeingDestroyedP (/* Widget widget */); |
5626 | 17 |
5707 | 18 void XtSafelyDestroyWidget (/* Widget */); |
5626 | 19 |
20 #endif /* _LWLIB_UTILS_H_ */ |