diff options
| author | Richard M. Stallman <rms@gnu.org> | 1992-10-20 06:11:53 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1992-10-20 06:11:53 +0000 |
| commit | 715d93450c82686297bda552aa8c560b4fb9cb54 (patch) | |
| tree | dfd4c7bc2d4db06fcd10f04a9d946ec3deb614fd | |
| parent | c2db7f312f18a176a264fac1785019b83550eb2b (diff) | |
| download | emacs-715d93450c82686297bda552aa8c560b4fb9cb54.tar.gz | |
(syms_of_keyboard): Properly staticpro this_command_keys.
| -rw-r--r-- | src/keyboard.c | 2 |
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 () staticpro (&recent_keys); this_command_keys = Fmake_vector (make_number (40), Qnil); - staticpro (&recent_keys); + staticpro (&this_command_keys); func_key_syms = Qnil; staticpro (&func_key_syms); |
