diff options
| author | Richard M. Stallman | 2002-01-26 23:08:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-01-26 23:08:16 +0000 |
| commit | f5798fbde63ec2c68b4391165af8a6580fa0d6af (patch) | |
| tree | a21b531000b71e05891e164c408b47647d25589f | |
| parent | 9db0af9e14f3479b60269a91c5bda5c21ce36ded (diff) | |
| download | emacs-f5798fbde63ec2c68b4391165af8a6580fa0d6af.tar.gz emacs-f5798fbde63ec2c68b4391165af8a6580fa0d6af.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 5 | ||||
| -rw-r--r-- | lisp/ChangeLog | 27 | ||||
| -rw-r--r-- | src/ChangeLog | 7 |
3 files changed, 39 insertions, 0 deletions
| @@ -396,6 +396,11 @@ SQL buffer. | |||
| 396 | distinct colors supported by a character terminal. | 396 | distinct colors supported by a character terminal. |
| 397 | 397 | ||
| 398 | +++ | 398 | +++ |
| 399 | *** The meanings of scroll-up-aggressively and scroll-down-aggressively | ||
| 400 | have been interchanged, so that the former now controls scrolling up, | ||
| 401 | and the latter now controls scrolling down. | ||
| 402 | |||
| 403 | +++ | ||
| 399 | ** New function window-body-height. | 404 | ** New function window-body-height. |
| 400 | 405 | ||
| 401 | This is like window-height but does not count the mode line | 406 | This is like window-height but does not count the mode line |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ce93a6c126f..72c645d9295 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,30 @@ | |||
| 1 | 2002-01-26 Evgeny Roubinchtein <evgenyr@cs.washington.edu> | ||
| 2 | |||
| 3 | * pc-select.el (pc-selection-mode-hook) | ||
| 4 | (pc-select-saved-settings-alist, pc-select-map) | ||
| 5 | (pc-select-saved-global-map, pc-select-key-bindings-alist) | ||
| 6 | (pc-select-default-key-bindings, pc-select-extra-key-bindings) | ||
| 7 | (pc-select-meta-moves-sexps-key-bindings) | ||
| 8 | (pc-select-tty-key-bindings, pc-select-old-M-delete-binding): | ||
| 9 | New variables. | ||
| 10 | (pc-select-define-keys, pc-select-restore-keys): New functions. | ||
| 11 | (pc-select-add-to-alist, pc-select-save-and-set-var) | ||
| 12 | (pc-select-save-and-set-mode, pc-select-restore-var) | ||
| 13 | (pc-select-restore-mode): New macros. | ||
| 14 | (pc-selection-mode): Completely rewrote the body of the function; | ||
| 15 | the main goal was to make pc-selection-mode "turn-off"-able, like | ||
| 16 | other minor modes. Use define-minore-mode instead of just a | ||
| 17 | defun. Store the key bindings into four alists: | ||
| 18 | pc-select-default-key-bindings, pc-select-extra-key-bindings, | ||
| 19 | pc-select-meta-moves-sexps-key-bindings, and | ||
| 20 | pc-select-tty-key-bindings; then have the pc-select-define-keys | ||
| 21 | function walk those alists instead of calling define-key | ||
| 22 | repeatedly. When the mode is turned on, set the | ||
| 23 | keybindings in global-map and remember the old keybindings; when | ||
| 24 | the mode is turned off, restore the previously-saved keybindings. | ||
| 25 | (pc-selection-mode defcustom): Reflect the fact that the mode is | ||
| 26 | now "turn-off"-able. | ||
| 27 | |||
| 1 | 2002-01-26 Eli Zaretskii <eliz@is.elta.co.il> | 28 | 2002-01-26 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 29 | ||
| 3 | * eshell/esh-cmd.el (eshell-eval-command): If eshell-resume-eval | 30 | * eshell/esh-cmd.el (eshell-eval-command): If eshell-resume-eval |
diff --git a/src/ChangeLog b/src/ChangeLog index ff8aea4faeb..388e67baac1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2002-01-26 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * buffer.c (syms_of_buffer): Doc fixes for scroll-...-aggressively. | ||
| 4 | |||
| 5 | * xdisp.c (try_scrolling): Exchange uses of scroll_down_aggressively | ||
| 6 | and scroll_up_aggressively. | ||
| 7 | |||
| 1 | 2002-01-26 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 8 | 2002-01-26 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 9 | ||
| 3 | * keyboard.c (parse_tool_bar_item): Remove duplicated prototypes. | 10 | * keyboard.c (parse_tool_bar_item): Remove duplicated prototypes. |