aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-06-24 00:34:47 +0000
committerKarl Heuer1994-06-24 00:34:47 +0000
commit186cf7192161e665d92e9ee09ea872dc46e2367b (patch)
tree681c6cf68e6885157ed9dffcd91f205893126f0a /src
parentc6dd34cba24a997fded42007001075e942593e95 (diff)
downloademacs-186cf7192161e665d92e9ee09ea872dc46e2367b.tar.gz
emacs-186cf7192161e665d92e9ee09ea872dc46e2367b.zip
(syms_of_keyboard): Don't staticpro the same var twice.
Diffstat (limited to 'src')
-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 ()
6000 DEFVAR_LISP ("last-command-char", &last_command_char, 6000 DEFVAR_LISP ("last-command-char", &last_command_char,
6001 "Last input event that was part of a command."); 6001 "Last input event that was part of a command.");
6002 6002
6003 DEFVAR_LISP ("last-command-event", &last_command_char, 6003 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
6004 "Last input event that was part of a command."); 6004 "Last input event that was part of a command.");
6005 6005
6006 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event, 6006 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.");
6012 DEFVAR_LISP ("last-input-char", &last_input_char, 6012 DEFVAR_LISP ("last-input-char", &last_input_char,
6013 "Last input event."); 6013 "Last input event.");
6014 6014
6015 DEFVAR_LISP ("last-input-event", &last_input_char, 6015 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
6016 "Last input event."); 6016 "Last input event.");
6017 6017
6018 DEFVAR_LISP ("unread-command-events", &Vunread_command_events, 6018 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,