diff options
| author | Richard M. Stallman | 1994-05-05 04:44:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-05 04:44:24 +0000 |
| commit | 0f5f20968f47bb3f1bd4f339974cbc92a1a056bb (patch) | |
| tree | 3d897fd27a8a093c2f1e1dd9236c17746e89790a | |
| parent | 23aaa3427fed4dcf3a4d7a77ca39533185b9d7a1 (diff) | |
| download | emacs-0f5f20968f47bb3f1bd4f339974cbc92a1a056bb.tar.gz emacs-0f5f20968f47bb3f1bd4f339974cbc92a1a056bb.zip | |
(last_point_position_buffer): Declared.
| -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 a33b52db0c0..788f1f9c047 100644 --- a/src/commands.h +++ b/src/commands.h | |||
| @@ -70,9 +70,12 @@ extern Lisp_Object unread_switch_frame; | |||
| 70 | /* Previous command symbol found here for comparison */ | 70 | /* Previous command symbol found here for comparison */ |
| 71 | extern Lisp_Object last_command; | 71 | extern Lisp_Object last_command; |
| 72 | 72 | ||
| 73 | /* Previous value of point */ | 73 | /* The value of point when the last command was executed. */ |
| 74 | extern int last_point_position; | 74 | extern int last_point_position; |
| 75 | 75 | ||
| 76 | /* The buffer that was current when the last command was started. */ | ||
| 77 | extern Lisp_Object last_point_position_buffer; | ||
| 78 | |||
| 76 | /* Nonzero means ^G can quit instantly */ | 79 | /* Nonzero means ^G can quit instantly */ |
| 77 | extern int immediate_quit; | 80 | extern int immediate_quit; |
| 78 | 81 | ||