diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-11 00:02:21 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-11 00:02:21 -0700 |
commit | 14a9c8df7aea649633c74000600965913c6b0b2a (patch) | |
tree | 1c411221418050c4f880d6bf2b7042e900ec4584 /src/commands.h | |
parent | 74ab6df507f0f4707a8bd25924fbdba9d1610f4f (diff) | |
download | emacs-14a9c8df7aea649633c74000600965913c6b0b2a.tar.gz |
* commands.h (last_point_position, last_point_position_buffer):
(last_point_position_window): Remove decls.
* keyboard.c: Make these variables static.
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/commands.h b/src/commands.h index 925e0ba1b80..bcd5de44180 100644 --- a/src/commands.h +++ b/src/commands.h @@ -36,15 +36,6 @@ extern Lisp_Object control_x_map; events until a non-ASCII event is acceptable as input. */ extern Lisp_Object unread_switch_frame; -/* The value of point when the last command was started. */ -extern EMACS_INT last_point_position; - -/* The buffer that was current when the last command was started. */ -extern Lisp_Object last_point_position_buffer; - -/* The window that was selected when the last command was started. */ -extern Lisp_Object last_point_position_window; - /* Nonzero means ^G can quit instantly */ extern int immediate_quit; @@ -55,4 +46,3 @@ extern int immediate_quit; /* Set this nonzero to force reconsideration of mode line. */ extern int update_mode_lines; - |