diff options
| author | Reuben Thomas | 2016-12-04 21:55:19 +0000 |
|---|---|---|
| committer | Reuben Thomas | 2016-12-13 19:43:49 +0000 |
| commit | e1aa788807684ff7a0797db3a8787863f2520da1 (patch) | |
| tree | 6a5a2efdd5e36736d651f8a0874075b288cb38ee | |
| parent | db6e1f82976a7f232a4a206a3c850ed34cfbfdd3 (diff) | |
| download | emacs-e1aa788807684ff7a0797db3a8787863f2520da1.tar.gz emacs-e1aa788807684ff7a0797db3a8787863f2520da1.zip | |
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.
| -rw-r--r-- | lisp/textmodes/ispell.el | 3 |
1 files changed, 1 insertions, 2 deletions
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 | |||
| 3851 | (point-max))) | 3851 | (point-max))) |
| 3852 | (t (min (point-max) (funcall ispell-message-text-end)))))) | 3852 | (t (min (point-max) (funcall ispell-message-text-end)))))) |
| 3853 | (default-prefix ; Vanilla cite prefix (just used for cite-regexp) | 3853 | (default-prefix ; Vanilla cite prefix (just used for cite-regexp) |
| 3854 | (if (and (boundp 'mail-yank-prefix) mail-yank-prefix) | 3854 | (if (ispell-non-empty-string mail-yank-prefix) |
| 3855 | (ispell-non-empty-string mail-yank-prefix) | ||
| 3856 | " \\|\t")) | 3855 | " \\|\t")) |
| 3857 | (cite-regexp ;Prefix of quoted text | 3856 | (cite-regexp ;Prefix of quoted text |
| 3858 | (cond | 3857 | (cond |