aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/textmodes/ispell.el9
1 files changed, 2 insertions, 7 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 3abefdc2eff..2f91ec278bb 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -3866,16 +3866,11 @@ You can bind this to the key C-c i in GNUS or mail by adding to
3866 " \\|\t")) 3866 " \\|\t"))
3867 (cite-regexp ;Prefix of quoted text 3867 (cite-regexp ;Prefix of quoted text
3868 (cond 3868 (cond
3869 ((functionp 'sc-cite-regexp) ; sc 3.0 3869 ((functionp 'sc-cite-regexp) ; supercite >= 3.0
3870 (ispell-with-no-warnings 3870 (ispell-with-no-warnings
3871 (concat "\\(" (sc-cite-regexp) "\\)" "\\|" 3871 (concat "\\(" (sc-cite-regexp) "\\)" "\\|"
3872 (ispell-non-empty-string sc-reference-tag-string)))) 3872 (ispell-non-empty-string sc-reference-tag-string))))
3873 ((boundp 'sc-cite-regexp) ; sc 2.3 3873 ((equal major-mode 'message-mode) ; GNUS >= 5
3874 (concat "\\(" sc-cite-regexp "\\)" "\\|"
3875 (ispell-with-no-warnings
3876 (ispell-non-empty-string sc-reference-tag-string))))
3877 ((or (equal major-mode 'news-reply-mode) ;GNUS 4 & below
3878 (equal major-mode 'message-mode)) ;GNUS 5
3879 (concat "In article <" "\\|" 3874 (concat "In article <" "\\|"
3880 "[^,;&+=\n]+ <[^,;&+=]+> writes:" "\\|" 3875 "[^,;&+=\n]+ <[^,;&+=]+> writes:" "\\|"
3881 (ispell-with-no-warnings message-cite-prefix-regexp) 3876 (ispell-with-no-warnings message-cite-prefix-regexp)