diff options
| author | Gerd Moellmann | 2001-01-08 13:19:18 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-01-08 13:19:18 +0000 |
| commit | a758f97d7f5a6588d64cf84b48aba52ce53b3676 (patch) | |
| tree | 831efe30cadad406991639f5209decea41af9edf | |
| parent | f3e03a42c6b3791d517a7bd3fce6f075c264dffb (diff) | |
| download | emacs-a758f97d7f5a6588d64cf84b48aba52ce53b3676.tar.gz emacs-a758f97d7f5a6588d64cf84b48aba52ce53b3676.zip | |
*** empty log message ***
| -rw-r--r-- | etc/ChangeLog | 5 | ||||
| -rw-r--r-- | etc/NEWS | 5 | ||||
| -rw-r--r-- | lisp/ChangeLog | 18 | ||||
| -rw-r--r-- | src/ChangeLog | 8 |
4 files changed, 36 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 3006747dd1c..3b5ab0b52c7 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-01-08 Kevin Gallagher <kevingal@onramp.net> | ||
| 2 | |||
| 3 | * edt-user.doc: Updated to reflect EDT Emulation version 4.0 | ||
| 4 | enhancements. | ||
| 5 | |||
| 1 | 2000-12-29 Gerd Moellmann <gerd@gnu.org> | 6 | 2000-12-29 Gerd Moellmann <gerd@gnu.org> |
| 2 | 7 | ||
| 3 | * fr-refcard.tex, fr-refcard.ps, fr-drdref.tex, fr-drdref.ps: New | 8 | * fr-refcard.tex, fr-refcard.ps, fr-drdref.tex, fr-drdref.ps: New |
| @@ -2105,6 +2105,11 @@ long promised. | |||
| 2105 | * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, | 2105 | * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, |
| 2106 | (Display-related features are described in a page of their own below.) | 2106 | (Display-related features are described in a page of their own below.) |
| 2107 | 2107 | ||
| 2108 | ** The new hook `kbd-macro-termination-hook' is run at the end of of | ||
| 2109 | function execute-kbd-macro. Functions on this hook are called with no | ||
| 2110 | args. The hook is run independent of how the macro was terminated | ||
| 2111 | (signal or normal termination). | ||
| 2112 | |||
| 2108 | +++ | 2113 | +++ |
| 2109 | ** Functions `butlast' and `nbutlast' for removing trailing elements | 2114 | ** Functions `butlast' and `nbutlast' for removing trailing elements |
| 2110 | from a list are now available without requiring the CL package. | 2115 | from a list are now available without requiring the CL package. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2f51cc65464..f1fcdf2e552 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -5,6 +5,24 @@ | |||
| 5 | instead of setting signal-hook-function. | 5 | instead of setting signal-hook-function. |
| 6 | (isearch-done): Remove isearch-done from kbd-macro-termination-hook. | 6 | (isearch-done): Remove isearch-done from kbd-macro-termination-hook. |
| 7 | 7 | ||
| 8 | 2001-01-08 Kevin Gallagher <kevingal@onramp.net> | ||
| 9 | |||
| 10 | * emulation/edt.el: Update to version 4.0. Provide support for | ||
| 11 | EDT scroll margins at top and bottom of the window. Provide an | ||
| 12 | emulation of the EDT SUBS command (bound to GOLD-Enter, by | ||
| 13 | default). Enhance edt-quit, bound to GOLD-q by default, to warn | ||
| 14 | user when file-related buffer modifications exist. Provide | ||
| 15 | support for running EDT Emulation in XEmacs. Provide customize | ||
| 16 | access to some user updatable variables. Add Commentary section | ||
| 17 | to file header. Fixed a few minor bugs and cleaned up some code. | ||
| 18 | |||
| 19 | * emulation/edt-mapper.el: Update to version 4.0. Provide support | ||
| 20 | for detecting a keypress that generates an ASCII key sequence. | ||
| 21 | (Previously, only a keypress that generates a vector was | ||
| 22 | recognized.) Embed Window Manager name into name of the generated | ||
| 23 | EDT Emulation initialization file since the initialization file is | ||
| 24 | Window Manager specific. Add Commentary section to file header. | ||
| 25 | |||
| 8 | 2001-01-07 Eli Zaretskii <eliz@is.elta.co.il> | 26 | 2001-01-07 Eli Zaretskii <eliz@is.elta.co.il> |
| 9 | 27 | ||
| 10 | * mail/sendmail.el (mail-mode): Doc fix. | 28 | * mail/sendmail.el (mail-mode): Doc fix. |
diff --git a/src/ChangeLog b/src/ChangeLog index fd1cec2306f..f64bae3885b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2001-01-08 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * macros.c (Qkbd_macro_termination_hook): New variable. | ||
| 4 | (syms_of_macros): Initialize and staticpro it. | ||
| 5 | (pop_kbd_macro): Run kbd-macro-termination-hook. | ||
| 6 | |||
| 7 | * xterm.c (XTread_socket) <LeaveNotify>: Set help_echo to nil. | ||
| 8 | |||
| 1 | 2001-01-07 Dave Love <d.love@dl.ac.uk> | 9 | 2001-01-07 Dave Love <d.love@dl.ac.uk> |
| 2 | 10 | ||
| 3 | * keyboard.c (Fread_key_sequence_vector): Avoid newline in | 11 | * keyboard.c (Fread_key_sequence_vector): Avoid newline in |