diff options
| author | Richard M. Stallman | 2002-07-20 22:16:01 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-07-20 22:16:01 +0000 |
| commit | 56592bebfd622ba0a09d23d07c6785af23c03bce (patch) | |
| tree | c58d4cd99e0c3c30a95588a7f8d630a5856311d9 | |
| parent | dd98f00a8b314a84219edccb8ce0dd2da6823019 (diff) | |
| download | emacs-56592bebfd622ba0a09d23d07c6785af23c03bce.tar.gz emacs-56592bebfd622ba0a09d23d07c6785af23c03bce.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 3 | ||||
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | src/ChangeLog | 18 |
3 files changed, 29 insertions, 0 deletions
| @@ -940,6 +940,9 @@ mode-lines in inverse-video. | |||
| 940 | 940 | ||
| 941 | * Lisp Changes in Emacs 21.4 | 941 | * Lisp Changes in Emacs 21.4 |
| 942 | 942 | ||
| 943 | ** There is a new Warnings facility; see the functions `warn' | ||
| 944 | and `display-warning'. | ||
| 945 | |||
| 943 | ** The functions all-completions and try-completion now accept lists | 946 | ** The functions all-completions and try-completion now accept lists |
| 944 | of strings as well as hash-tables additionally to alists, obarrays | 947 | of strings as well as hash-tables additionally to alists, obarrays |
| 945 | and functions. Furthermore, the function `test-completion' is now | 948 | and functions. Furthermore, the function `test-completion' is now |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bb46820e26e..297d18956c9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,13 @@ | |||
| 1 | 2002-07-20 Richard M. Stallman <rms@gnu.org> | 1 | 2002-07-20 Richard M. Stallman <rms@gnu.org> |
| 2 | 2 | ||
| 3 | * wid-edit.el (widget-documentation-string-value-create): | ||
| 4 | Say "Hide Rest", not just "Hide". | ||
| 5 | |||
| 6 | * cus-edit.el (custom-variable-value-create): | ||
| 7 | Say "Show Value", not just "Show". Also "Hide Value". | ||
| 8 | Output a newline before the doc string. | ||
| 9 | (custom-face-value-create): Say "Show Face" and "Hide Face". | ||
| 10 | |||
| 3 | * files.el (toggle-read-only): Clean up the hint message. | 11 | * files.el (toggle-read-only): Clean up the hint message. |
| 4 | 12 | ||
| 5 | * emacs-lisp/bytecomp.el: Use warnings.el. | 13 | * emacs-lisp/bytecomp.el: Use warnings.el. |
diff --git a/src/ChangeLog b/src/ChangeLog index 5a793488602..cab7a2a94b3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | 2002-07-20 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * print.c (print_error_message): New args CONTEXT and CALLER. | ||
| 4 | Calls changed. | ||
| 5 | |||
| 6 | * lisp.h (print_error_message): Declare new args. | ||
| 7 | |||
| 8 | * keyboard.c (cmd_error_internal): Pass Vsignaling_function | ||
| 9 | and CONTEXT to print_error_message, don't print them here. | ||
| 10 | For a Quit, don't use Vsignaling_function. | ||
| 11 | Call message_log_maybe_newline. | ||
| 12 | |||
| 13 | * Makefile.in (xsmfns.o): Don't depend on lisp.h. | ||
| 14 | |||
| 15 | 2002-07-20 Kim F. Storm <storm@cua.dk> | ||
| 16 | |||
| 17 | * xdisp.c (redisplay_window): Test MODIFF to set buffer_unchanged_p. | ||
| 18 | |||
| 1 | 2002-07-19 Ken Raeburn <raeburn@gnu.org> | 19 | 2002-07-19 Ken Raeburn <raeburn@gnu.org> |
| 2 | 20 | ||
| 3 | * bytecode.c (struct byte_stack): Pointers into byte string now | 21 | * bytecode.c (struct byte_stack): Pointers into byte string now |