aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1992-10-20 06:11:53 +0000
committerRichard M. Stallman1992-10-20 06:11:53 +0000
commit715d93450c82686297bda552aa8c560b4fb9cb54 (patch)
treedfd4c7bc2d4db06fcd10f04a9d946ec3deb614fd /src
parentc2db7f312f18a176a264fac1785019b83550eb2b (diff)
downloademacs-715d93450c82686297bda552aa8c560b4fb9cb54.tar.gz
emacs-715d93450c82686297bda552aa8c560b4fb9cb54.zip
(syms_of_keyboard): Properly staticpro this_command_keys.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 63b033b446e..7d377ea679e 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -3931,7 +3931,7 @@ syms_of_keyboard ()
3931 staticpro (&recent_keys); 3931 staticpro (&recent_keys);
3932 3932
3933 this_command_keys = Fmake_vector (make_number (40), Qnil); 3933 this_command_keys = Fmake_vector (make_number (40), Qnil);
3934 staticpro (&recent_keys); 3934 staticpro (&this_command_keys);
3935 3935
3936 func_key_syms = Qnil; 3936 func_key_syms = Qnil;
3937 staticpro (&func_key_syms); 3937 staticpro (&func_key_syms);