aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-10-14 05:54:16 +0000
committerRichard M. Stallman1995-10-14 05:54:16 +0000
commit9cda4f7cdda9c8de192d6bfc6b659d3f87c96aa8 (patch)
tree0c8d0cadf0b5bebec2a25129bd7fa11a7a0c41bf /src
parenta59de17bafe51b4df454811c08affbf528005986 (diff)
downloademacs-9cda4f7cdda9c8de192d6bfc6b659d3f87c96aa8.tar.gz
emacs-9cda4f7cdda9c8de192d6bfc6b659d3f87c96aa8.zip
(Qdisplay_table): New variable.
(syms_of_display): Initialize it.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index ae1798681ad..166d7b9fb37 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -122,6 +122,8 @@ Lisp_Object Vstandard_display_table;
122 positive means at end of text in echo area; 122 positive means at end of text in echo area;
123 negative means at beginning of line. */ 123 negative means at beginning of line. */
124int cursor_in_echo_area; 124int cursor_in_echo_area;
125
126Lisp_Object Qdisplay_table;
125 127
126/* The currently selected frame. 128/* The currently selected frame.
127 In a single-frame version, this variable always holds the address of 129 In a single-frame version, this variable always holds the address of
@@ -2562,6 +2564,9 @@ syms_of_display ()
2562 frame_and_buffer_state = Fmake_vector (make_number (20), Qlambda); 2564 frame_and_buffer_state = Fmake_vector (make_number (20), Qlambda);
2563 staticpro (&frame_and_buffer_state); 2565 staticpro (&frame_and_buffer_state);
2564 2566
2567 Qdisplay_table = intern ("display-table");
2568 staticpro (&Qdisplay_table);
2569
2565 DEFVAR_INT ("baud-rate", &baud_rate, 2570 DEFVAR_INT ("baud-rate", &baud_rate,
2566 "*The output baud rate of the terminal.\n\ 2571 "*The output baud rate of the terminal.\n\
2567On most systems, changing this value will affect the amount of padding\n\ 2572On most systems, changing this value will affect the amount of padding\n\