diff options
| author | Dave Love | 2000-10-06 16:11:44 +0000 |
|---|---|---|
| committer | Dave Love | 2000-10-06 16:11:44 +0000 |
| commit | a23ccdf282ca784fd817b7d17a85c57ac3792bef (patch) | |
| tree | cea7d3560a90f10705fccc06a2e72407458ef9dd | |
| parent | d73aed133bcd95d74d7e166b1bb5531328d607e2 (diff) | |
| download | emacs-a23ccdf282ca784fd817b7d17a85c57ac3792bef.tar.gz emacs-a23ccdf282ca784fd817b7d17a85c57ac3792bef.zip | |
(image-file-name-regexp): image-file-regexps -> image-file-name-regexps.
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/image-file.el | 4 |
2 files changed, 12 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5725c838cb7..762dae385b5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,9 +1,19 @@ | |||
| 1 | 2000-10-06 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * image-file.el (image-file-name-regexp): image-file-regexps -> | ||
| 4 | image-file-name-regexps. | ||
| 5 | |||
| 1 | 2000-10-06 Gerd Moellmann <gerd@gnu.org> | 6 | 2000-10-06 Gerd Moellmann <gerd@gnu.org> |
| 2 | 7 | ||
| 3 | * loadup.el (toplevel): Load `loaddefs' before `help' because the | 8 | * loadup.el (toplevel): Load `loaddefs' before `help' because the |
| 4 | latter needs the autoloaded define-minor-mode macro during the | 9 | latter needs the autoloaded define-minor-mode macro during the |
| 5 | bootstrap. | 10 | bootstrap. |
| 6 | 11 | ||
| 12 | 2000-10-06 Miles Bader <miles@lsi.nec.co.jp> | ||
| 13 | |||
| 14 | * simple.el (shell-command-on-region): If the output is short | ||
| 15 | enough to display in an expanded echo area, show it here. | ||
| 16 | |||
| 7 | * startup.el (command-line): For now, activate tool-bar-mode only | 17 | * startup.el (command-line): For now, activate tool-bar-mode only |
| 8 | if XPM images are supported. | 18 | if XPM images are supported. |
| 9 | 19 | ||
diff --git a/lisp/image-file.el b/lisp/image-file.el index 0265f4b5ffa..979120a1929 100644 --- a/lisp/image-file.el +++ b/lisp/image-file.el | |||
| @@ -85,8 +85,8 @@ variable is set using \\[customize]." | |||
| 85 | (if image-file-name-regexps | 85 | (if image-file-name-regexps |
| 86 | (mapconcat 'identity | 86 | (mapconcat 'identity |
| 87 | (if exts-regexp | 87 | (if exts-regexp |
| 88 | (cons exts-regexp image-file-regexps) | 88 | (cons exts-regexp image-file-name-regexps) |
| 89 | image-file-regexps) | 89 | image-file-name-regexps) |
| 90 | "\\|") | 90 | "\\|") |
| 91 | exts-regexp))) | 91 | exts-regexp))) |
| 92 | 92 | ||