diff options
| author | Richard M. Stallman | 2002-10-26 22:52:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-10-26 22:52:42 +0000 |
| commit | 5ab0ceed9ba8e87bb4257b52f731b2c0c87b971b (patch) | |
| tree | e31bad1e5d064e06f8eb89af78ea114e74d6d9bb | |
| parent | f98176d2142e77ffd8c3564a074b1c0384ae55d1 (diff) | |
| download | emacs-5ab0ceed9ba8e87bb4257b52f731b2c0c87b971b.tar.gz emacs-5ab0ceed9ba8e87bb4257b52f731b2c0c87b971b.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 5 | ||||
| -rw-r--r-- | lisp/ChangeLog | 44 | ||||
| -rw-r--r-- | src/ChangeLog | 4 |
3 files changed, 53 insertions, 0 deletions
| @@ -59,6 +59,11 @@ See the files mac/README and mac/INSTALL for build instructions. | |||
| 59 | 59 | ||
| 60 | * Changes in Emacs 21.4 | 60 | * Changes in Emacs 21.4 |
| 61 | 61 | ||
| 62 | ** Init file changes | ||
| 63 | |||
| 64 | You can now put the init files .emacs and .emacs_SHELL under | ||
| 65 | ~/.emacs.d or directly under ~. Emacs will find them in either place. | ||
| 66 | |||
| 62 | ** MH-E changes. | 67 | ** MH-E changes. |
| 63 | 68 | ||
| 64 | Upgraded to mh-e version 6.1.1. There have been major changes since | 69 | Upgraded to mh-e version 6.1.1. There have been major changes since |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 26a05c06a61..5179d89a1f3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,41 @@ | |||
| 1 | 2002-10-26 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/make-mode.el (makefile-cleanup-continuations): | ||
| 4 | Default for variable is nil. | ||
| 5 | (makefile-warn-continuations): New function. | ||
| 6 | (makefile-mode): Put it on write-file-functions. | ||
| 7 | |||
| 8 | * international/mule-cmds.el (select-safe-coding-system): | ||
| 9 | Delete debugging setq. | ||
| 10 | |||
| 11 | * shell.el (shell): Look for .emacs_SHELL under ~/.emacs.d | ||
| 12 | after looking in ~. | ||
| 13 | |||
| 14 | * startup.el (command-line): Look for .emacs under ~/.emacs.d | ||
| 15 | after looking in ~. | ||
| 16 | |||
| 17 | * simple.el (toggle-truncate-lines): When turning off truncation, | ||
| 18 | clear out the hscroll value in this buffer's windows. | ||
| 19 | |||
| 20 | * simple.el (display-message-or-buffer): Don't display empty | ||
| 21 | output in the echo area. | ||
| 22 | |||
| 23 | * man.el (Man-default-man-entry): Don't look for all word chars, | ||
| 24 | look only for characters that are normally part of a shell command. | ||
| 25 | |||
| 26 | * gud.el (gdb): Pass default-directory to GDB via -cd option. | ||
| 27 | |||
| 28 | * font-lock.el (c++-font-lock-keywords...): Add `restrict' keyword. | ||
| 29 | |||
| 30 | * find-file.el (ff-find-related-file): Fix autoload cookie. | ||
| 31 | |||
| 32 | * emacs-lisp/unsafep.el (unsafep-variable): Pass second arg to | ||
| 33 | risky-local-variable-p. | ||
| 34 | |||
| 35 | * files.el (risky-local-variable-p): VAL=nil has special meaning. | ||
| 36 | |||
| 37 | * Makefile.in (compile-always): Avoid error in old Bash versions. | ||
| 38 | |||
| 1 | 2002-10-27 Kim F. Storm <storm@cua.dk> | 39 | 2002-10-27 Kim F. Storm <storm@cua.dk> |
| 2 | 40 | ||
| 3 | * pcvs.el (cvs-checkout): Use read-directory-name. | 41 | * pcvs.el (cvs-checkout): Use read-directory-name. |
| @@ -19,6 +57,12 @@ | |||
| 19 | * textmodes/outline.el (outline-minor-mode): Add customization group. | 57 | * textmodes/outline.el (outline-minor-mode): Add customization group. |
| 20 | Patch from Matthew Swift <swift@alum.mit.edu>. | 58 | Patch from Matthew Swift <swift@alum.mit.edu>. |
| 21 | 59 | ||
| 60 | 2002-10-23 Richard M. Stallman <rms@gnu.org> | ||
| 61 | |||
| 62 | * files.el (risky-local-variable-p): New arg VAL. | ||
| 63 | (compile-command): Use `stringp' for `safe-local-variable' prop. | ||
| 64 | (hack-one-local-variable): Pass VAL to `risky-local-variable-p'. | ||
| 65 | |||
| 22 | 2002-10-23 Francis J. Wright <F.J.Wright@qmul.ac.uk> | 66 | 2002-10-23 Francis J. Wright <F.J.Wright@qmul.ac.uk> |
| 23 | 67 | ||
| 24 | * woman.el: Updated user interface generally, especially Cygwin | 68 | * woman.el: Updated user interface generally, especially Cygwin |
diff --git a/src/ChangeLog b/src/ChangeLog index 8791cac5bec..3a7e53ffc07 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-10-26 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * editfns.c (Fformat): Detect invalid format letters for floats. | ||
| 4 | |||
| 1 | 2002-10-25 Kenichi Handa <handa@m17n.org> | 5 | 2002-10-25 Kenichi Handa <handa@m17n.org> |
| 2 | 6 | ||
| 3 | * xfns.c (x_set_name): Encode by Qcompound_text unconditionally. | 7 | * xfns.c (x_set_name): Encode by Qcompound_text unconditionally. |