]> git.eshelyaron.com Git - emacs.git/commitdiff
(spell-buffer, spell-word): Suppress compiler warnings about
authorGlenn Morris <rgm@gnu.org>
Fri, 22 Feb 2008 03:57:29 +0000 (03:57 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 22 Feb 2008 03:57:29 +0000 (03:57 +0000)
spell-region.

lisp/textmodes/spell.el

index 7cb011ec7ab3156b39dfd04736b7c423ab08ff2c..01eff7616a73d9697c28d7daf8eeac07a96facbb 100644 (file)
@@ -61,7 +61,9 @@ and then put into a query-replace to fix some or all occurrences.
 If you do not want to change a word, just give the same word
 as its \"correct\" spelling; then the query replace is skipped."
   (interactive)
-  (spell-region (point-min) (point-max) "buffer"))
+  ;; Don't warn about spell-region being obsolete.
+  (with-no-warnings
+    (spell-region (point-min) (point-max) "buffer")))
 ;;;###autoload
 (make-obsolete 'spell-buffer 'ispell-buffer "23.1")
 
@@ -78,7 +80,9 @@ and `query-replace' the entire buffer to substitute it."
      (setq beg (point))
      (forward-word 1)
      (setq end (point)))
-    (spell-region beg end (buffer-substring beg end))))
+    ;; Don't warn about spell-region being obsolete.
+    (with-no-warnings
+      (spell-region beg end (buffer-substring beg end)))))
 ;;;###autoload
 (make-obsolete 'spell-word 'ispell-word "23.1")