diff options
| author | Lars Magne Ingebrigtsen | 2011-07-15 16:24:09 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-07-15 16:24:09 +0200 |
| commit | 3aa5f34b9ba4b34132ae8f971c5820175f868489 (patch) | |
| tree | 66699dec044d97ea6f27c68e2e7271df18ef64c6 | |
| parent | 064e2d087eafc008377be3547bbed21267468422 (diff) | |
| download | emacs-3aa5f34b9ba4b34132ae8f971c5820175f868489.tar.gz emacs-3aa5f34b9ba4b34132ae8f971c5820175f868489.zip | |
Error message fix in `describe-specified-language-support'
* international/mule-cmds.el
(describe-specified-language-support): Make the error message
clearer (bug#8905).
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/international/mule-cmds.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c315d6a2ff3..3f32e44beb2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1 | 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * international/mule-cmds.el | ||
| 4 | (describe-specified-language-support): Make the error message | ||
| 5 | clearer (bug#8905). | ||
| 6 | |||
| 3 | * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690). | 7 | * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690). |
| 4 | 8 | ||
| 5 | * isearch.el (isearch-barrier): Add a doc string, since it's | 9 | * isearch.el (isearch-barrier): Add a doc string, since it's |
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index 6a73aaaa838..128fb86b7b4 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el | |||
| @@ -2059,7 +2059,7 @@ See `set-language-info-alist' for use in programs." | |||
| 2059 | (or (not (eq last-command-event 'Default)) | 2059 | (or (not (eq last-command-event 'Default)) |
| 2060 | (setq last-command-event 'English)) | 2060 | (setq last-command-event 'English)) |
| 2061 | (setq language-name (symbol-name last-command-event)))) | 2061 | (setq language-name (symbol-name last-command-event)))) |
| 2062 | (error "Bogus calling sequence")) | 2062 | (error "This command should only be called from the menu bar")) |
| 2063 | (describe-language-environment language-name))) | 2063 | (describe-language-environment language-name))) |
| 2064 | 2064 | ||
| 2065 | (defun describe-language-environment (language-name) | 2065 | (defun describe-language-environment (language-name) |