comparison lisp/textmodes/ispell.el @ 104002:21a6ee4b9d7f

(ispell-looking-back): Update declaration.
author Glenn Morris <rgm@gnu.org>
date Tue, 21 Jul 2009 05:03:43 +0000
parents 99f2f3ae1c56
children 91afee51b252
comparison
equal deleted inserted replaced
104001:27e12d5d8f28 104002:21a6ee4b9d7f
200 200
201 (eval-and-compile ;; Protect against declare-function undefined in XEmacs 201 (eval-and-compile ;; Protect against declare-function undefined in XEmacs
202 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))) 202 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
203 203
204 (declare-function ispell-check-minver "ispell" (v1 v2)) 204 (declare-function ispell-check-minver "ispell" (v1 v2))
205 (declare-function ispell-looking-back "ispell" (regexp &optional limit)) 205 (declare-function ispell-looking-back "ispell"
206 (regexp &optional limit &rest ignored))
206 207
207 (if (fboundp 'version<=) 208 (if (fboundp 'version<=)
208 (defalias 'ispell-check-minver 'version<=) 209 (defalias 'ispell-check-minver 'version<=)
209 (defun ispell-check-minver (minver version) 210 (defun ispell-check-minver (minver version)
210 "Check if string VERSION is at least string MINVER. 211 "Check if string VERSION is at least string MINVER.