diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 3 | ||||
| -rw-r--r-- | src/keyboard.h | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 02bc7d2a0b7..9ebd86b5356 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -195,8 +195,9 @@ Lisp_Object unread_switch_frame; | |||
| 195 | /* Last size recorded for a current buffer which is not a minibuffer. */ | 195 | /* Last size recorded for a current buffer which is not a minibuffer. */ |
| 196 | static ptrdiff_t last_non_minibuf_size; | 196 | static ptrdiff_t last_non_minibuf_size; |
| 197 | 197 | ||
| 198 | /* Total number of times read_char has returned, modulo UINTMAX_MAX + 1. */ | ||
| 199 | uintmax_t num_input_events; | 198 | uintmax_t num_input_events; |
| 199 | ptrdiff_t point_before_last_command_or_undo; | ||
| 200 | struct buffer *buffer_before_last_command_or_undo; | ||
| 200 | 201 | ||
| 201 | /* Value of num_nonmacro_input_events as of last auto save. */ | 202 | /* Value of num_nonmacro_input_events as of last auto save. */ |
| 202 | 203 | ||
diff --git a/src/keyboard.h b/src/keyboard.h index 6c715a44fba..890d24eb2d9 100644 --- a/src/keyboard.h +++ b/src/keyboard.h | |||
| @@ -245,16 +245,15 @@ extern KBOARD *current_kboard; | |||
| 245 | /* Total number of times read_char has returned, modulo UINTMAX_MAX + 1. */ | 245 | /* Total number of times read_char has returned, modulo UINTMAX_MAX + 1. */ |
| 246 | extern uintmax_t num_input_events; | 246 | extern uintmax_t num_input_events; |
| 247 | 247 | ||
| 248 | |||
| 249 | /* The location of point immediately before the last command was | 248 | /* The location of point immediately before the last command was |
| 250 | executed, or the last time the undo-boundary command added a | 249 | executed, or the last time the undo-boundary command added a |
| 251 | boundary.*/ | 250 | boundary.*/ |
| 252 | ptrdiff_t point_before_last_command_or_undo; | 251 | extern ptrdiff_t point_before_last_command_or_undo; |
| 253 | 252 | ||
| 254 | /* The value of current_buffer immediately before the last command was | 253 | /* The value of current_buffer immediately before the last command was |
| 255 | executed, or the last time the undo-boundary command added a | 254 | executed, or the last time the undo-boundary command added a |
| 256 | boundary.*/ | 255 | boundary.*/ |
| 257 | struct buffer *buffer_before_last_command_or_undo; | 256 | extern struct buffer *buffer_before_last_command_or_undo; |
| 258 | 257 | ||
| 259 | extern struct buffer *prev_buffer; | 258 | extern struct buffer *prev_buffer; |
| 260 | 259 | ||