]> git.eshelyaron.com Git - emacs.git/commitdiff
(ispell-skip-region): Don't complain when
authorKarl Heuer <kwzh@gnu.org>
Sat, 20 Jun 1998 21:37:14 +0000 (21:37 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sat, 20 Jun 1998 21:37:14 +0000 (21:37 +0000)
ispell-check-comments is 'exclusive and there are no more
comments.  Just skip to the end instead.

lisp/textmodes/ispell.el

index ab77a6ceab1bcffd2dee968d944445cf03ae997a..080c221a48e9f5400e911da122afe556e4c75812 100644 (file)
@@ -2059,7 +2059,7 @@ Return non-nil if not aborted."
        (search-forward comment-end ispell-region-end t)))
      ((and (eq 'exclusive ispell-check-comments) comment-start
           (string= key comment-end))
-      (search-forward comment-start ispell-region-end t))
+      (search-forward comment-start ispell-region-end :end))
      ((and ispell-skip-tib (string-match ispell-tib-ref-beginning key))
       (re-search-forward ispell-tib-ref-end ispell-region-end t))
      ((and ispell-skip-sgml (string-match "<" key))