]> git.eshelyaron.com Git - emacs.git/commitdiff
(enum event_kind): Delete final comma.
authorRichard M. Stallman <rms@gnu.org>
Wed, 11 Aug 1993 20:45:15 +0000 (20:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 11 Aug 1993 20:45:15 +0000 (20:45 +0000)
(meta_modifier): Delete final comma.

src/termhooks.h

index e3b6f08f6b1e5bf8738785bf4c9bc83fcb352742..4ef621fc246678b786bd7b60ced41ffd6aec9fdb 100644 (file)
@@ -240,7 +240,7 @@ enum event_kind
                                   milliseconds) for the click.  */
   selection_request_event,     /* Another X client wants a selection from us.
                                   See `struct selection_event'.  */
-  selection_clear_event,       /* Another X client cleared our selection.  */
+  selection_clear_event X client cleared our selection.  */
 };
 
 /* If a struct input_event has a kind which is selection_request_event
@@ -320,7 +320,7 @@ enum {
   hyper_modifier=  CHAR_HYPER, /* Under X, the XK_Hyper_[LR] keysyms.  */
   shift_modifier=  CHAR_SHIFT,
   ctrl_modifier        =  CHAR_CTL,
-  meta_modifier        =  CHAR_META,   /* Under X, the XK_Meta_[LR] keysyms.  */
+  meta_modifier        =  CHAR_META    /* Under X, the XK_Meta_[LR] keysyms.  */
 };
 
 #endif