diff options
Diffstat (limited to 'lisp/gnus/message.el')
| -rw-r--r-- | lisp/gnus/message.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 00a27fb5f51..8a3967f3461 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -2086,6 +2086,7 @@ You must have the \"hashcash\" binary installed, see `hashcash-path'." | |||
| 2086 | 2086 | ||
| 2087 | (defun message-mark-active-p () | 2087 | (defun message-mark-active-p () |
| 2088 | "Non-nil means the mark and region are currently active in this buffer." | 2088 | "Non-nil means the mark and region are currently active in this buffer." |
| 2089 | (declare (obsolete mark-active "29.1")) | ||
| 2089 | mark-active) | 2090 | mark-active) |
| 2090 | 2091 | ||
| 2091 | (defun message-unquote-tokens (elems) | 2092 | (defun message-unquote-tokens (elems) |
| @@ -2953,12 +2954,12 @@ Consider adding this function to `message-header-setup-hook'" | |||
| 2953 | ["Fill Yanked Message" message-fill-yanked-message t] | 2954 | ["Fill Yanked Message" message-fill-yanked-message t] |
| 2954 | ["Insert Signature" message-insert-signature t] | 2955 | ["Insert Signature" message-insert-signature t] |
| 2955 | ["Caesar (rot13) Message" message-caesar-buffer-body t] | 2956 | ["Caesar (rot13) Message" message-caesar-buffer-body t] |
| 2956 | ["Caesar (rot13) Region" message-caesar-region (message-mark-active-p)] | 2957 | ["Caesar (rot13) Region" message-caesar-region mark-active] |
| 2957 | ["Elide Region" message-elide-region | 2958 | ["Elide Region" message-elide-region |
| 2958 | :active (message-mark-active-p) | 2959 | :active mark-active |
| 2959 | :help "Replace text in region with an ellipsis"] | 2960 | :help "Replace text in region with an ellipsis"] |
| 2960 | ["Delete Outside Region" message-delete-not-region | 2961 | ["Delete Outside Region" message-delete-not-region |
| 2961 | :active (message-mark-active-p) | 2962 | :active mark-active |
| 2962 | :help "Delete all quoted text outside region"] | 2963 | :help "Delete all quoted text outside region"] |
| 2963 | ["Kill To Signature" message-kill-to-signature t] | 2964 | ["Kill To Signature" message-kill-to-signature t] |
| 2964 | ["Newline and Reformat" message-newline-and-reformat t] | 2965 | ["Newline and Reformat" message-newline-and-reformat t] |
| @@ -2966,7 +2967,7 @@ Consider adding this function to `message-header-setup-hook'" | |||
| 2966 | ["Spellcheck" ispell-message :help "Spellcheck this message"] | 2967 | ["Spellcheck" ispell-message :help "Spellcheck this message"] |
| 2967 | "----" | 2968 | "----" |
| 2968 | ["Insert Region Marked" message-mark-inserted-region | 2969 | ["Insert Region Marked" message-mark-inserted-region |
| 2969 | :active (message-mark-active-p) :help "Mark region with enclosing tags"] | 2970 | :active mark-active :help "Mark region with enclosing tags"] |
| 2970 | ["Insert File Marked..." message-mark-insert-file | 2971 | ["Insert File Marked..." message-mark-insert-file |
| 2971 | :help "Insert file at point marked with enclosing tags"] | 2972 | :help "Insert file at point marked with enclosing tags"] |
| 2972 | ["Attach File..." mml-attach-file t] | 2973 | ["Attach File..." mml-attach-file t] |