diff options
| author | Kim F. Storm | 2005-01-22 01:43:55 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-01-22 01:43:55 +0000 |
| commit | d00e399ac9e1c0184a888846ea3fcd511edb7a82 (patch) | |
| tree | ae203e78db5a06b4ccdae6c4ba1927ccda17db03 | |
| parent | f9e697040d10847042d9f99859485555d16417cb (diff) | |
| download | emacs-d00e399ac9e1c0184a888846ea3fcd511edb7a82.tar.gz emacs-d00e399ac9e1c0184a888846ea3fcd511edb7a82.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | src/ChangeLog | 18 |
2 files changed, 23 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b78aa00b925..62a2b85bb81 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2005-01-22 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * simple.el (line-move-1): Rename from line-move. | ||
| 4 | (line-move): New function that adjusts vscroll for partially | ||
| 5 | visible rows, and calls line-move-1 otherwise. | ||
| 6 | |||
| 1 | 2005-01-21 Ren,Ai(B Kyllingstad <listmailxemacs@kyllingstad.com> | 7 | 2005-01-21 Ren,Ai(B Kyllingstad <listmailxemacs@kyllingstad.com> |
| 2 | 8 | ||
| 3 | * pcomplete.el: define pcomplete-read-event instead of read-event, | 9 | * pcomplete.el: define pcomplete-read-event instead of read-event, |
diff --git a/src/ChangeLog b/src/ChangeLog index f095ec14981..00f8e15aff2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | 2005-01-22 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * window.c (auto_window_vscroll_p): New boolean. | ||
| 4 | (syms_of_window): DEFVAR_BOOL it. | ||
| 5 | (Fpos_visible_in_window_p): Extend return value to include RTOP | ||
| 6 | and RBOT values if FULLY is nil. | ||
| 7 | (window_scroll_pixel_based): Adjust vscroll for partially visible | ||
| 8 | rows if auto_window_vscroll_p is set. | ||
| 9 | (Fset_window_vscroll): Do nothing if vscroll is not modified. | ||
| 10 | |||
| 11 | * xdisp.c (pos_visible_p): Replace FULLY arg by RTOP and RBOT args | ||
| 12 | to return number of partially invisible pixels at top and bottom | ||
| 13 | of the dislay row at POS. | ||
| 14 | |||
| 15 | * lisp.h (pos_visible_p): Fix prototype. | ||
| 16 | |||
| 1 | 2005-01-21 Richard M. Stallman <rms@gnu.org> | 17 | 2005-01-21 Richard M. Stallman <rms@gnu.org> |
| 2 | 18 | ||
| 3 | * fileio.c (Fcopy_file): Doc fix. | 19 | * fileio.c (Fcopy_file): Doc fix. |
| @@ -23,7 +39,7 @@ | |||
| 23 | (init_editfns): Assign new variable operating-system-release | 39 | (init_editfns): Assign new variable operating-system-release |
| 24 | based on call to uname if available. | 40 | based on call to uname if available. |
| 25 | (get_operating_system_release): Added function to | 41 | (get_operating_system_release): Added function to |
| 26 | allow c-level access to operating system release. | 42 | allow c-level access to operating system release. |
| 27 | 43 | ||
| 28 | * config.h: Regenerated. | 44 | * config.h: Regenerated. |
| 29 | 45 | ||