diff options
| -rw-r--r-- | lisp/gnus/message.el | 9 | ||||
| -rw-r--r-- | lisp/gnus/mml.el | 3 |
2 files changed, 6 insertions, 6 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] |
diff --git a/lisp/gnus/mml.el b/lisp/gnus/mml.el index 5cd57d2f801..e8291cfe6f7 100644 --- a/lisp/gnus/mml.el +++ b/lisp/gnus/mml.el | |||
| @@ -35,7 +35,6 @@ | |||
| 35 | (declare-function gnus-setup-posting-charset "gnus-msg" (group)) | 35 | (declare-function gnus-setup-posting-charset "gnus-msg" (group)) |
| 36 | (autoload 'gnus-completing-read "gnus-util") | 36 | (autoload 'gnus-completing-read "gnus-util") |
| 37 | (autoload 'message-fetch-field "message") | 37 | (autoload 'message-fetch-field "message") |
| 38 | (autoload 'message-mark-active-p "message") | ||
| 39 | (autoload 'message-info "message") | 38 | (autoload 'message-info "message") |
| 40 | (autoload 'fill-flowed-encode "flow-fill") | 39 | (autoload 'fill-flowed-encode "flow-fill") |
| 41 | (autoload 'message-posting-charset "message") | 40 | (autoload 'message-posting-charset "message") |
| @@ -1236,7 +1235,7 @@ If HANDLES is non-nil, use it instead reparsing the buffer." | |||
| 1236 | ;; | 1235 | ;; |
| 1237 | ;;["Narrow" mml-narrow-to-part t] | 1236 | ;;["Narrow" mml-narrow-to-part t] |
| 1238 | ["Quote MML in region" mml-quote-region | 1237 | ["Quote MML in region" mml-quote-region |
| 1239 | :active (message-mark-active-p) | 1238 | :active mark-active |
| 1240 | :help "Quote MML tags in region"] | 1239 | :help "Quote MML tags in region"] |
| 1241 | ["Validate MML" mml-validate t] | 1240 | ["Validate MML" mml-validate t] |
| 1242 | ["Preview" mml-preview t] | 1241 | ["Preview" mml-preview t] |