From: Reuben Thomas Date: Sun, 4 Dec 2016 21:55:19 +0000 (+0000) Subject: Remove boundp test for always-bound symbol X-Git-Tag: emacs-26.0.90~1093 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e1aa788807684ff7a0797db3a8787863f2520da1;p=emacs.git Remove boundp test for always-bound symbol * lisp/textmodes/ispell.el (ispell-message): mail-yank-prefix is defvar’d at the top of the file, so remove a test to see if it is bound. --- diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 412e838e11b..894e2eac057 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -3851,8 +3851,7 @@ You can bind this to the key C-c i in GNUS or mail by adding to (point-max))) (t (min (point-max) (funcall ispell-message-text-end)))))) (default-prefix ; Vanilla cite prefix (just used for cite-regexp) - (if (and (boundp 'mail-yank-prefix) mail-yank-prefix) - (ispell-non-empty-string mail-yank-prefix) + (if (ispell-non-empty-string mail-yank-prefix) " \\|\t")) (cite-regexp ;Prefix of quoted text (cond