From: Miles Bader Date: Sat, 21 Oct 2000 08:02:17 +0000 (+0000) Subject: (Fpos_visible_in_window_p): Update prototype X-Git-Tag: emacs-pretest-21.0.90~711 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=de54681ae510642d21f20e9dfd6f6e5125756980;p=emacs.git (Fpos_visible_in_window_p): Update prototype --- diff --git a/src/ChangeLog b/src/ChangeLog index e6ae01e40ab..4d64cde2e0d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,12 @@ +2000-10-21 Miles Bader + + * window.c (pos_fully_visible_in_window_p): New function. + (Fpos_visible_in_window_p): Add FULLY argument. + Use pos_fully_visible_in_window_p. + (window_scroll_pixel_based, window_scroll_line_based): Update + calls to Fpos_visible_in_window_p. + * lisp.h (Fpos_visible_in_window_p): Update prototype + 2000-10-20 Gerd Moellmann * alloc.c (toplevel): Conditionalize compilation of mem_* diff --git a/src/lisp.h b/src/lisp.h index 19620d93cea..ab7383efa32 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2632,7 +2632,7 @@ EXFUN (Fcurrent_window_configuration, 1); extern int compare_window_configurations P_ ((Lisp_Object, Lisp_Object, int)); EXFUN (Fcoordinates_in_window_p, 2); EXFUN (Fwindow_at, 3); -EXFUN (Fpos_visible_in_window_p, 2); +EXFUN (Fpos_visible_in_window_p, 3); extern void mark_window_cursors_off P_ ((struct window *)); extern int window_internal_height P_ ((struct window *)); extern int window_internal_width P_ ((struct window *));