Mercurial > emacs
changeset 3224:6be8f63060b3
(syms_of_keymap): Create global_map 256 slots long.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 28 May 1993 22:31:52 +0000 |
parents | 28a9541901d7 |
children | 1544ad5c9f99 |
files | src/keymap.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keymap.c Fri May 28 22:29:10 1993 +0000 +++ b/src/keymap.c Fri May 28 22:31:52 1993 +0000 @@ -2012,7 +2012,8 @@ Each one is the value of a Lisp variable, and is also pointed to by a C variable */ - global_map = Fmake_keymap (Qnil); + global_map = Fcons (Qkeymap, + Fcons (Fmake_vector (make_number (0400), Qnil))); Fset (intern ("global-map"), global_map); meta_map = Fmake_keymap (Qnil);