src/xdisp.c (redisplay_internal): Fix prototype.
This commit is contained in:
parent
d0f6953314
commit
e2abce014d
2 changed files with 11 additions and 7 deletions
|
@ -1,3 +1,7 @@
|
|||
2011-03-31 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* xdisp.c (redisplay_internal): Fix prototype.
|
||||
|
||||
2011-03-31 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* xdisp.c (SCROLL_LIMIT): New macro.
|
||||
|
@ -19,11 +23,6 @@
|
|||
(syms_of_xdisp) <scroll-conservatively>: Document the
|
||||
threshold of 100 lines for never-recentering scrolling.
|
||||
|
||||
2011-03-26 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* 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 <lekktu@gmail.com>
|
||||
|
||||
* 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 <eliz@gnu.org>
|
||||
|
||||
* 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 <lekktu@gmail.com>
|
||||
|
||||
* w32.c (read_unc_volume): Use parameter `henum', instead of
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue