summaryrefslogtreecommitdiff
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-06-24 00:34:47 +0000
committerKarl Heuer <kwzh@gnu.org>1994-06-24 00:34:47 +0000
commiteea7e40d4ec40a69c8918c63709164730962f4ae (patch)
tree771bf713124f1ff966e51de0b280d3bd8be6a526 /src/keyboard.c
parent75cf13750a90a4251683ee2561343de78b7e1273 (diff)
downloademacs-eea7e40d4ec40a69c8918c63709164730962f4ae.tar.gz
(syms_of_keyboard): Don't staticpro the same var twice.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 59b63c99333..b235588e0cd 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -6000,7 +6000,7 @@ syms_of_keyboard ()
DEFVAR_LISP ("last-command-char", &last_command_char,
"Last input event that was part of a command.");
- DEFVAR_LISP ("last-command-event", &last_command_char,
+ DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
"Last input event that was part of a command.");
DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
@@ -6012,7 +6012,7 @@ so that you can determine whether the command was run by mouse or not.");
DEFVAR_LISP ("last-input-char", &last_input_char,
"Last input event.");
- DEFVAR_LISP ("last-input-event", &last_input_char,
+ DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
"Last input event.");
DEFVAR_LISP ("unread-command-events", &Vunread_command_events,