comparison src/keymap.c @ 3425:c513638ee7ed

(syms_of_keymap): Add missing 2nd arg to Fcons.
author Richard M. Stallman <rms@gnu.org>
date Wed, 02 Jun 1993 02:09:04 +0000
parents 6be8f63060b3
children 9d0af0f2dc0d
comparison
equal deleted inserted replaced
3424:7ccd5b60891d 3425:c513638ee7ed
2011 /* Initialize the keymaps standardly used. 2011 /* Initialize the keymaps standardly used.
2012 Each one is the value of a Lisp variable, and is also 2012 Each one is the value of a Lisp variable, and is also
2013 pointed to by a C variable */ 2013 pointed to by a C variable */
2014 2014
2015 global_map = Fcons (Qkeymap, 2015 global_map = Fcons (Qkeymap,
2016 Fcons (Fmake_vector (make_number (0400), Qnil))); 2016 Fcons (Fmake_vector (make_number (0400), Qnil), Qnil));
2017 Fset (intern ("global-map"), global_map); 2017 Fset (intern ("global-map"), global_map);
2018 2018
2019 meta_map = Fmake_keymap (Qnil); 2019 meta_map = Fmake_keymap (Qnil);
2020 Fset (intern ("esc-map"), meta_map); 2020 Fset (intern ("esc-map"), meta_map);
2021 Ffset (intern ("ESC-prefix"), meta_map); 2021 Ffset (intern ("ESC-prefix"), meta_map);