aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-10-05 09:51:00 +0000
committerGerd Moellmann2001-10-05 09:51:00 +0000
commita9dff54b9422ed37535789a2095c3d721e8dcba9 (patch)
treee6ea65408d517c0e5c6de6da4359312a23b5b7ff /src
parentbf9f2aabfea2209ad109606642aac60e037853bd (diff)
downloademacs-a9dff54b9422ed37535789a2095c3d721e8dcba9.tar.gz
emacs-a9dff54b9422ed37535789a2095c3d721e8dcba9.zip
(struct input_event): Use proper type for `kind'.
Diffstat (limited to 'src')
-rw-r--r--src/termhooks.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/termhooks.h b/src/termhooks.h
index e129fa2a8ac..6a8cc8befd3 100644
--- a/src/termhooks.h
+++ b/src/termhooks.h
@@ -341,7 +341,7 @@ enum event_kind
341struct input_event 341struct input_event
342{ 342{
343 /* What kind of event was this? */ 343 /* What kind of event was this? */
344 int kind; 344 enum event_kind kind;
345 345
346 /* For an ascii_keystroke and multibyte_char_keystroke, this is the 346 /* For an ascii_keystroke and multibyte_char_keystroke, this is the
347 character. 347 character.