diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2023-09-02 15:37:08 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2023-09-02 15:37:08 +0200 |
commit | 0bd46619413e83fe3c85c8a1dfbf5e20dfce8605 (patch) | |
tree | d86c08c2671f817167eadfc15f0cf319dd6b0dc6 /lisp/textmodes | |
parent | 524c0c34f245440e45f3672b35b32e529cbb5c2a (diff) | |
download | emacs-0bd46619413e83fe3c85c8a1dfbf5e20dfce8605.tar.gz emacs-0bd46619413e83fe3c85c8a1dfbf5e20dfce8605.tar.bz2 emacs-0bd46619413e83fe3c85c8a1dfbf5e20dfce8605.zip |
Doc fixes for obsolete functions and variables
* admin/notes/multi-tty:
* doc/emacs/building.texi (Debugger Operation):
* doc/misc/efaq-w32.texi (Line ends by file system):
* doc/misc/gnus.texi (Hashcash):
* lisp/emacs-lisp/eieio.el (eieio-class-parents)
(eieio-class-children):
* lisp/progmodes/perl-mode.el:
* lisp/textmodes/ispell.el (ispell-lookup-words):
* src/buffer.h: Update or delete references to variables and functions
made obsolete in Emacs 24.4.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/ispell.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 97c4ce9f32d..eb550b639a3 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -2523,9 +2523,9 @@ this function signals an error." (if lookup-dict (unless (file-readable-p lookup-dict) - (error "lookup-words error: Unreadable or missing plain word-list %s." + (error "ispell-lookup-words: Unreadable or missing plain word-list %s" lookup-dict)) - (error (concat "lookup-words error: No plain word-list found at system" + (error (concat "ispell-lookup-words: No plain word-list found at system" "default locations. " "Customize `ispell-alternate-dictionary' to set yours."))) |