diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-06-24 23:25:22 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-06-24 23:25:22 +0200 |
commit | cd3520a41df21d80a9d894c58af2daba23c8dd24 (patch) | |
tree | 945eaef322c65471833954ddce161a7a913ee3c8 /src/xterm.c | |
parent | 7d0da90e7b98f5c09df82be9985cc27d30adea07 (diff) | |
download | emacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.tar.gz |
Move DEFSYM to lisp.h and use everywhere.
Diffstat (limited to 'src/xterm.c')
-rw-r--r-- | src/xterm.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/xterm.c b/src/xterm.c index bc7592795c4..20516ee9d6f 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -10698,11 +10698,8 @@ syms_of_xterm (void) staticpro (&last_mouse_scroll_bar); last_mouse_scroll_bar = Qnil; - staticpro (&Qvendor_specific_keysyms); - Qvendor_specific_keysyms = intern_c_string ("vendor-specific-keysyms"); - - staticpro (&Qlatin_1); - Qlatin_1 = intern_c_string ("latin-1"); + DEFSYM (Qvendor_specific_keysyms, "vendor-specific-keysyms"); + DEFSYM (Qlatin_1, "latin-1"); staticpro (&last_mouse_press_frame); last_mouse_press_frame = Qnil; @@ -10711,8 +10708,7 @@ syms_of_xterm (void) xg_default_icon_file = make_pure_c_string ("icons/hicolor/scalable/apps/emacs.svg"); staticpro (&xg_default_icon_file); - Qx_gtk_map_stock = intern_c_string ("x-gtk-map-stock"); - staticpro (&Qx_gtk_map_stock); + DEFSYM (Qx_gtk_map_stock, "x-gtk-map-stock"); #endif DEFVAR_BOOL ("x-use-underline-position-properties", |