diff options
| author | Richard M. Stallman | 2004-08-28 15:32:06 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-08-28 15:32:06 +0000 |
| commit | ea2e9f8dc96dc66f57318731bb44aebb8c61271d (patch) | |
| tree | 09c0c2a2cb0eee9329c75ab5d993d5645e94ce08 | |
| parent | 8a9cad92b1c9eecbdc9268a885413b7c5d08c7fa (diff) | |
| download | emacs-ea2e9f8dc96dc66f57318731bb44aebb8c61271d.tar.gz emacs-ea2e9f8dc96dc66f57318731bb44aebb8c61271d.zip | |
Whitespace change.
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 66ef44650d5..af7cb76df6b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2004-08-28 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/grep.el (grep-default-command): Use find-tag-default. | ||
| 4 | (grep-tag-default): Function deleted. | ||
| 5 | |||
| 6 | * subr.el (find-tag-default): Moved from etags.el. | ||
| 7 | |||
| 8 | * progmodes/etags.el (find-tag-default): Moved to subr.el. | ||
| 9 | |||
| 10 | * emacs-lisp/lisp-mode.el (prin1-char): Put `shift' modifier | ||
| 11 | into the basic character if it has an uppercase form. | ||
| 12 | |||
| 1 | 2004-08-27 Kenichi Handa <handa@m17n.org> | 13 | 2004-08-27 Kenichi Handa <handa@m17n.org> |
| 2 | 14 | ||
| 3 | * international/utf-8.el (utf-8-post-read-conversion): If the | 15 | * international/utf-8.el (utf-8-post-read-conversion): If the |
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index bcc9c2a89a7..d6f601cd121 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -363,7 +363,7 @@ if that value is non-nil." | |||
| 363 | (when (stringp default) | 363 | (when (stringp default) |
| 364 | (if (string-match ":+" default) | 364 | (if (string-match ":+" default) |
| 365 | (substring default (match-end 0)) | 365 | (substring default (match-end 0)) |
| 366 | default)))) | 366 | default)))) |
| 367 | 367 | ||
| 368 | ;; Used in old LispM code. | 368 | ;; Used in old LispM code. |
| 369 | (defalias 'common-lisp-mode 'lisp-mode) | 369 | (defalias 'common-lisp-mode 'lisp-mode) |