aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 81a2b754ff3..48c57676757 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -77,11 +77,6 @@ static int this_line_start_hpos;
77/* Buffer that this_line variables are describing. */ 77/* Buffer that this_line variables are describing. */
78static struct buffer *this_line_buffer; 78static struct buffer *this_line_buffer;
79 79
80/* Set by try_window_id to the vpos of first of any lines
81 scrolled on to the bottom of the frame. These lines should
82 not be included in any general scroll computation. */
83static int scroll_bottom_vpos;
84
85/* Value of echo_area_glyphs when it was last acted on. 80/* Value of echo_area_glyphs when it was last acted on.
86 If this is nonzero, there is a message on the frame 81 If this is nonzero, there is a message on the frame
87 in the minibuffer and it should be erased as soon 82 in the minibuffer and it should be erased as soon
@@ -166,7 +161,6 @@ static int try_window_id ();
166static struct position *display_text_line (); 161static struct position *display_text_line ();
167static void display_mode_line (); 162static void display_mode_line ();
168static int display_mode_element (); 163static int display_mode_element ();
169static char *fmodetrunc ();
170static char *decode_mode_spec (); 164static char *decode_mode_spec ();
171static int display_string (); 165static int display_string ();
172static void display_menu_bar (); 166static void display_menu_bar ();
@@ -505,10 +499,10 @@ message (m, a1, a2, a3)
505 a[2] = a3; 499 a[2] = a3;
506 500
507 len = doprnt (FRAME_MESSAGE_BUF (echo_frame), 501 len = doprnt (FRAME_MESSAGE_BUF (echo_frame),
508 FRAME_WIDTH (echo_frame), m, 0, 3, a); 502 FRAME_WIDTH (echo_frame), m, (char *)0, 3, a);
509#else 503#else
510 len = doprnt (FRAME_MESSAGE_BUF (echo_frame), 504 len = doprnt (FRAME_MESSAGE_BUF (echo_frame),
511 FRAME_WIDTH (echo_frame), m, 0, 3, &a1); 505 FRAME_WIDTH (echo_frame), m, (char *)0, 3, &a1);
512#endif /* NO_ARG_ARRAY */ 506#endif /* NO_ARG_ARRAY */
513 507
514 message2 (FRAME_MESSAGE_BUF (echo_frame), len); 508 message2 (FRAME_MESSAGE_BUF (echo_frame), len);