aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorBrian Preble1991-07-08 22:33:48 +0000
committerBrian Preble1991-07-08 22:33:48 +0000
commitf305bd747db6b3f4aa84f9c1b2ceac8d18150e78 (patch)
tree5cc46b5a8e5ddd34d8665a552a8ed0d1212585b2 /lisp/textmodes
parentc17d15d0bea0f99f046dab4b52e0a688feb252e9 (diff)
downloademacs-f305bd747db6b3f4aa84f9c1b2ceac8d18150e78.tar.gz
emacs-f305bd747db6b3f4aa84f9c1b2ceac8d18150e78.zip
*** empty log message ***
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/ispell4.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/textmodes/ispell4.el b/lisp/textmodes/ispell4.el
index 3ca62150511..f07e97aa48d 100644
--- a/lisp/textmodes/ispell4.el
+++ b/lisp/textmodes/ispell4.el
@@ -257,6 +257,9 @@ q, \\[keyboard-quit] Leave the command loop. You can come back later with \\[is
257 (message "Ispell parsing done.") 257 (message "Ispell parsing done.")
258 (ispell-next)))) 258 (ispell-next))))
259 259
260;;;###autoload
261(fset 'ispell-buffer 'ispell)
262
260(defun ispell-next () 263(defun ispell-next ()
261 "Resume command loop for most recent ispell command." 264 "Resume command loop for most recent ispell command."
262 (interactive) 265 (interactive)
@@ -303,7 +306,8 @@ See `ispell' for more information."
303 (load-library "spell") 306 (load-library "spell")
304 (define-key esc-map "$" 'spell-word) 307 (define-key esc-map "$" 'spell-word)
305 (spell-word)))))) 308 (spell-word))))))
306;;;###autoload (define-key esc-map "$" 'ispell-word) 309;;;###autoload
310(define-key esc-map "$" 'ispell-word)
307 311
308;;;###autoload 312;;;###autoload
309(defun ispell-region (start &optional end) 313(defun ispell-region (start &optional end)