From: Juanma Barranquero Date: Thu, 31 Mar 2011 19:42:38 +0000 (+0200) Subject: src/xdisp.c (redisplay_internal): Fix prototype. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~442 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e2abce014d6f8d0d4a2bda66c1b554e84a0e51e6;p=emacs.git src/xdisp.c (redisplay_internal): Fix prototype. --- diff --git a/src/ChangeLog b/src/ChangeLog index 98589b69cfb..c2e28251cb0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-03-31 Juanma Barranquero + + * xdisp.c (redisplay_internal): Fix prototype. + 2011-03-31 Eli Zaretskii * xdisp.c (SCROLL_LIMIT): New macro. @@ -19,11 +23,6 @@ (syms_of_xdisp) : Document the threshold of 100 lines for never-recentering scrolling. -2011-03-26 Eli Zaretskii - - * xdisp.c (redisplay_window): Don't check buffer's clip_changed - flag as a prerequisite for invoking try_scrolling. (Bug#6671) - 2011-03-31 Juanma Barranquero * dispextern.h (move_it_by_lines): @@ -210,6 +209,11 @@ * s/usg5-4-common.h (SIGTYPE): Remove definition. * s/template.h (SIGTYPE): Remove commented out definition. +2011-03-26 Eli Zaretskii + + * xdisp.c (redisplay_window): Don't check buffer's clip_changed + flag as a prerequisite for invoking try_scrolling. (Bug#6671) + 2011-03-26 Juanma Barranquero * w32.c (read_unc_volume): Use parameter `henum', instead of diff --git a/src/xdisp.c b/src/xdisp.c index 4b5835a322a..3c9d38536bb 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -807,7 +807,7 @@ static void push_it (struct it *); static void pop_it (struct it *); static void sync_frame_with_window_matrix_rows (struct window *); static void select_frame_for_redisplay (Lisp_Object); -static void redisplay_internal (); +static void redisplay_internal (void); static int echo_area_display (int); static void redisplay_windows (Lisp_Object); static void redisplay_window (Lisp_Object, int); @@ -11415,7 +11415,7 @@ do { if (polling_stopped_here) start_polling (); \ is not necessary; currently that causes some problems. */ static void -redisplay_internal () +redisplay_internal (void) { struct window *w = XWINDOW (selected_window); struct window *sw;