# HG changeset patch # User Dan Nicolaescu # Date 1257493771 0 # Node ID 0b36e1e1cf473bd8ce1f7cecc1c4a29d77f63984 # Parent 21bdda3ded623c58620600bb2a99a058f695a8b0 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory. diff -r 21bdda3ded62 -r 0b36e1e1cf47 src/ChangeLog --- a/src/ChangeLog Fri Nov 06 06:50:52 2009 +0000 +++ b/src/ChangeLog Fri Nov 06 07:49:31 2009 +0000 @@ -1,5 +1,7 @@ 2009-11-06 Dan Nicolaescu + * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory. + * xterm.c (syms_of_xterm): * xselect.c (syms_of_xselect): * xmenu.c (syms_of_xmenu): diff -r 21bdda3ded62 -r 0b36e1e1cf47 src/keymap.c --- a/src/keymap.c Fri Nov 06 06:50:52 2009 +0000 +++ b/src/keymap.c Fri Nov 06 07:49:31 2009 +0000 @@ -3945,11 +3945,11 @@ Ffset (intern_c_string ("Control-X-prefix"), control_x_map); exclude_keys - = Fcons (Fcons (build_string ("DEL"), build_string ("\\d")), - Fcons (Fcons (build_string ("TAB"), build_string ("\\t")), - Fcons (Fcons (build_string ("RET"), build_string ("\\r")), - Fcons (Fcons (build_string ("ESC"), build_string ("\\e")), - Fcons (Fcons (build_string ("SPC"), build_string (" ")), + = pure_cons (pure_cons (make_pure_c_string ("DEL"), make_pure_c_string ("\\d")), + pure_cons (pure_cons (make_pure_c_string ("TAB"), make_pure_c_string ("\\t")), + pure_cons (pure_cons (make_pure_c_string ("RET"), make_pure_c_string ("\\r")), + pure_cons (pure_cons (make_pure_c_string ("ESC"), make_pure_c_string ("\\e")), + pure_cons (pure_cons (make_pure_c_string ("SPC"), make_pure_c_string (" ")), Qnil))))); staticpro (&exclude_keys);