diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/commands.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/commands.h b/src/commands.h index c1330af273e..ed46141bf11 100644 --- a/src/commands.h +++ b/src/commands.h | |||
| @@ -75,12 +75,15 @@ extern Lisp_Object Vthis_command; | |||
| 75 | events until a non-ASCII event is acceptable as input. */ | 75 | events until a non-ASCII event is acceptable as input. */ |
| 76 | extern Lisp_Object unread_switch_frame; | 76 | extern Lisp_Object unread_switch_frame; |
| 77 | 77 | ||
| 78 | /* The value of point when the last command was executed. */ | 78 | /* The value of point when the last command was started. */ |
| 79 | extern int last_point_position; | 79 | extern int last_point_position; |
| 80 | 80 | ||
| 81 | /* The buffer that was current when the last command was started. */ | 81 | /* The buffer that was current when the last command was started. */ |
| 82 | extern Lisp_Object last_point_position_buffer; | 82 | extern Lisp_Object last_point_position_buffer; |
| 83 | 83 | ||
| 84 | /* The window that was selected when the last command was started. */ | ||
| 85 | extern Lisp_Object last_point_position_window; | ||
| 86 | |||
| 84 | /* Nonzero means ^G can quit instantly */ | 87 | /* Nonzero means ^G can quit instantly */ |
| 85 | extern int immediate_quit; | 88 | extern int immediate_quit; |
| 86 | 89 | ||