diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/termhooks.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/termhooks.h b/src/termhooks.h index f2c9476161a..116101670fc 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -194,12 +194,13 @@ enum event_kind | |||
| 194 | { | 194 | { |
| 195 | no_event, /* nothing happened. This should never | 195 | no_event, /* nothing happened. This should never |
| 196 | actually appear in the event queue. */ | 196 | actually appear in the event queue. */ |
| 197 | ascii_keystroke, /* The ASCII code is in .code. | 197 | |
| 198 | ascii_keystroke, /* The ASCII code is in .code, perhaps | ||
| 199 | with modifiers applied. | ||
| 200 | .modifiers holds the state of the | ||
| 201 | modifier keys. | ||
| 198 | .frame_or_window is the frame in | 202 | .frame_or_window is the frame in |
| 199 | which the key was typed. | 203 | which the key was typed. |
| 200 | Note that this includes meta-keys, and | ||
| 201 | the modifiers field of the event | ||
| 202 | is unused. | ||
| 203 | .timestamp gives a timestamp (in | 204 | .timestamp gives a timestamp (in |
| 204 | milliseconds) for the keystroke. */ | 205 | milliseconds) for the keystroke. */ |
| 205 | non_ascii_keystroke, /* .code is a number identifying the | 206 | non_ascii_keystroke, /* .code is a number identifying the |