diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/mail/rmail.el | 4 | ||||
| -rw-r--r-- | lisp/mail/undigest.el | 5 |
3 files changed, 10 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5be521b8ca4..c4ec297cb30 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2012-02-18 Glenn Morris <rgm@gnu.org> | 1 | 2012-02-18 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete. | ||
| 4 | |||
| 5 | * mail/undigest.el (unforward-rmail-message): Doc fix. | ||
| 6 | |||
| 3 | * saveplace.el (save-place-ignore-files-regexp): Add :version. | 7 | * saveplace.el (save-place-ignore-files-regexp): Add :version. |
| 4 | 8 | ||
| 5 | 2012-02-18 Eli Zaretskii <eliz@gnu.org> | 9 | 2012-02-18 Eli Zaretskii <eliz@gnu.org> |
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 2ed54aa8d86..49e23a3b2f6 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -285,8 +285,10 @@ Setting this variable has an effect only before reading a mail." | |||
| 285 | :version "21.1") | 285 | :version "21.1") |
| 286 | 286 | ||
| 287 | ;;;###autoload | 287 | ;;;###autoload |
| 288 | (defvaralias 'rmail-dont-reply-to-names 'mail-dont-reply-to-names) | 288 | (define-obsolete-variable-alias 'rmail-dont-reply-to-names |
| 289 | 'mail-dont-reply-to-names "24.1") | ||
| 289 | 290 | ||
| 291 | ;; Prior to 24.1, this used to contain "\\`info-". | ||
| 290 | ;;;###autoload | 292 | ;;;###autoload |
| 291 | (defvar rmail-default-dont-reply-to-names nil | 293 | (defvar rmail-default-dont-reply-to-names nil |
| 292 | "Regexp specifying part of the default value of `mail-dont-reply-to-names'. | 294 | "Regexp specifying part of the default value of `mail-dont-reply-to-names'. |
diff --git a/lisp/mail/undigest.el b/lisp/mail/undigest.el index ee44cc72051..e34a3a4d71e 100644 --- a/lisp/mail/undigest.el +++ b/lisp/mail/undigest.el | |||
| @@ -228,8 +228,9 @@ Leaves original message, deleted, before the undigestified messages." | |||
| 228 | ;;;###autoload | 228 | ;;;###autoload |
| 229 | (defun unforward-rmail-message () | 229 | (defun unforward-rmail-message () |
| 230 | "Extract a forwarded message from the containing message. | 230 | "Extract a forwarded message from the containing message. |
| 231 | This puts the forwarded message into a separate rmail message | 231 | This puts the forwarded message into a separate rmail message following |
| 232 | following the containing message." | 232 | the containing message. This command is only useful when messages are |
| 233 | forwarded with `rmail-enable-mime-composing' set to nil." | ||
| 233 | (interactive) | 234 | (interactive) |
| 234 | (set-buffer rmail-buffer) | 235 | (set-buffer rmail-buffer) |
| 235 | (let ((buff (current-buffer)) | 236 | (let ((buff (current-buffer)) |