aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/textmodes/ispell.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index bc74401c21d..75590e711f5 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -2132,7 +2132,7 @@ You can bind this to the key C-c i in GNUS or mail by adding to
2132 (forward-line 1)) 2132 (forward-line 1))
2133 (setq case-fold-search nil) 2133 (setq case-fold-search nil)
2134 ;; Skip mail header, particularly for non-english languages. 2134 ;; Skip mail header, particularly for non-english languages.
2135 (if (looking-at mail-header-separator) 2135 (if (looking-at (concat (regexp-quote mail-header-separator) "$"))
2136 (forward-line 1)) 2136 (forward-line 1))
2137 (while (< (point) limit) 2137 (while (< (point) limit)
2138 ;; Skip across text cited from other messages. 2138 ;; Skip across text cited from other messages.