# HG changeset patch # User Kim F. Storm # Date 1106358235 0 # Node ID 0e7e54a3da103f049b7a6fa4a48d1ab00c6b2e97 # Parent 765371d08c66864122847f4766ecd692c6c4889c *** empty log message *** diff -r 765371d08c66 -r 0e7e54a3da10 lisp/ChangeLog --- a/lisp/ChangeLog Sat Jan 22 01:41:59 2005 +0000 +++ b/lisp/ChangeLog Sat Jan 22 01:43:55 2005 +0000 @@ -1,3 +1,9 @@ +2005-01-22 Kim F. Storm + + * simple.el (line-move-1): Rename from line-move. + (line-move): New function that adjusts vscroll for partially + visible rows, and calls line-move-1 otherwise. + 2005-01-21 Ren,Ai(B Kyllingstad * pcomplete.el: define pcomplete-read-event instead of read-event, diff -r 765371d08c66 -r 0e7e54a3da10 src/ChangeLog --- a/src/ChangeLog Sat Jan 22 01:41:59 2005 +0000 +++ b/src/ChangeLog Sat Jan 22 01:43:55 2005 +0000 @@ -1,3 +1,19 @@ +2005-01-22 Kim F. Storm + + * window.c (auto_window_vscroll_p): New boolean. + (syms_of_window): DEFVAR_BOOL it. + (Fpos_visible_in_window_p): Extend return value to include RTOP + and RBOT values if FULLY is nil. + (window_scroll_pixel_based): Adjust vscroll for partially visible + rows if auto_window_vscroll_p is set. + (Fset_window_vscroll): Do nothing if vscroll is not modified. + + * xdisp.c (pos_visible_p): Replace FULLY arg by RTOP and RBOT args + to return number of partially invisible pixels at top and bottom + of the dislay row at POS. + + * lisp.h (pos_visible_p): Fix prototype. + 2005-01-21 Richard M. Stallman * fileio.c (Fcopy_file): Doc fix. @@ -23,7 +39,7 @@ (init_editfns): Assign new variable operating-system-release based on call to uname if available. (get_operating_system_release): Added function to - allow c-level access to operating system release. + allow c-level access to operating system release. * config.h: Regenerated.