emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master e1aa788 18/23: Remove boundp test for always-bound


From: Reuben Thomas
Subject: [Emacs-diffs] master e1aa788 18/23: Remove boundp test for always-bound symbol
Date: Tue, 13 Dec 2016 19:44:37 +0000 (UTC)

branch: master
commit e1aa788807684ff7a0797db3a8787863f2520da1
Author: Reuben Thomas <address@hidden>
Commit: Reuben Thomas <address@hidden>

    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.
---
 lisp/textmodes/ispell.el |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 412e838..894e2ea 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]