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/dispnew.c | |
parent | 7d0da90e7b98f5c09df82be9985cc27d30adea07 (diff) | |
download | emacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.tar.gz |
Move DEFSYM to lisp.h and use everywhere.
Diffstat (limited to 'src/dispnew.c')
-rw-r--r-- | src/dispnew.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index 21df105971b..c33442d5048 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -6438,10 +6438,8 @@ syms_of_display (void) frame_and_buffer_state = Fmake_vector (make_number (20), Qlambda); staticpro (&frame_and_buffer_state); - Qdisplay_table = intern_c_string ("display-table"); - staticpro (&Qdisplay_table); - Qredisplay_dont_pause = intern_c_string ("redisplay-dont-pause"); - staticpro (&Qredisplay_dont_pause); + DEFSYM (Qdisplay_table, "display-table"); + DEFSYM (Qredisplay_dont_pause, "redisplay-dont-pause"); DEFVAR_INT ("baud-rate", baud_rate, doc: /* *The output baud rate of the terminal. |