aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorStefan Kangas2023-09-02 15:37:08 +0200
committerStefan Kangas2023-09-02 15:37:08 +0200
commit0bd46619413e83fe3c85c8a1dfbf5e20dfce8605 (patch)
treed86c08c2671f817167eadfc15f0cf319dd6b0dc6 /lisp/textmodes
parent524c0c34f245440e45f3672b35b32e529cbb5c2a (diff)
downloademacs-0bd46619413e83fe3c85c8a1dfbf5e20dfce8605.tar.gz
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.el4
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."
2523 2523
2524 (if lookup-dict 2524 (if lookup-dict
2525 (unless (file-readable-p lookup-dict) 2525 (unless (file-readable-p lookup-dict)
2526 (error "lookup-words error: Unreadable or missing plain word-list %s." 2526 (error "ispell-lookup-words: Unreadable or missing plain word-list %s"
2527 lookup-dict)) 2527 lookup-dict))
2528 (error (concat "lookup-words error: No plain word-list found at system" 2528 (error (concat "ispell-lookup-words: No plain word-list found at system"
2529 "default locations. " 2529 "default locations. "
2530 "Customize `ispell-alternate-dictionary' to set yours."))) 2530 "Customize `ispell-alternate-dictionary' to set yours.")))
2531 2531