comparison src/dispnew.c @ 13220:2e9014617492

(Qdisplay_table): New variable. (syms_of_display): Initialize it.
author Richard M. Stallman <rms@gnu.org>
date Sat, 14 Oct 1995 05:54:16 +0000
parents a9efbc138c23
children 7e92386e1cf7
comparison
equal deleted inserted replaced
13219:99b5164a319d 13220:2e9014617492
120 /* Nonzero means reading single-character input with prompt 120 /* Nonzero means reading single-character input with prompt
121 so put cursor on minibuffer after the prompt. 121 so put cursor on minibuffer after the prompt.
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. */
124 int cursor_in_echo_area; 124 int cursor_in_echo_area;
125
126 Lisp_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
128 the_only_frame. */ 130 the_only_frame. */
129 131
2559 defsubr (&Ssleep_for); 2561 defsubr (&Ssleep_for);
2560 defsubr (&Ssend_string_to_terminal); 2562 defsubr (&Ssend_string_to_terminal);
2561 2563
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);
2566
2567 Qdisplay_table = intern ("display-table");
2568 staticpro (&Qdisplay_table);
2564 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\
2567 On most systems, changing this value will affect the amount of padding\n\ 2572 On most systems, changing this value will affect the amount of padding\n\
2568 and the other strategic decisions made during redisplay."); 2573 and the other strategic decisions made during redisplay.");