diff options
| author | Glenn Morris | 2009-02-02 07:55:04 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-02-02 07:55:04 +0000 |
| commit | 236ab005f79a7f829abd57e7154c936de5156d69 (patch) | |
| tree | a7d22ea25324ef1342ae1869005d049931f8c012 | |
| parent | ec712abb5c88fb6469d8aed54d786c09b4bb9658 (diff) | |
| download | emacs-236ab005f79a7f829abd57e7154c936de5156d69.tar.gz emacs-236ab005f79a7f829abd57e7154c936de5156d69.zip | |
(rmail-ignored-headers, rmail-displayed-headers)
(rmail-retry-ignored-headers, rmail-highlighted-headers):
Restore autoloads.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/mail/rmail.el | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cf75fb1af23..545cd8f9ab9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2009-02-02 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * mail/rmail.el (rmail-ignored-headers, rmail-displayed-headers) | ||
| 4 | (rmail-retry-ignored-headers, rmail-highlighted-headers): | ||
| 5 | Restore autoloads. | ||
| 6 | |||
| 1 | 2009-02-02 Stefan Monnier <monnier@iro.umontreal.ca> | 7 | 2009-02-02 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 8 | ||
| 3 | * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Fix up EOB. | 9 | * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Fix up EOB. |
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 3966c0edac3..cd7a8895afa 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -315,6 +315,7 @@ variable `rmail-dont-reply-to-names', for when the user does not set | |||
| 315 | value is the user's email address and name.) | 315 | value is the user's email address and name.) |
| 316 | It is useful to set this variable in the site customization file.") | 316 | It is useful to set this variable in the site customization file.") |
| 317 | 317 | ||
| 318 | ;;;###autoload | ||
| 318 | (defcustom rmail-ignored-headers | 319 | (defcustom rmail-ignored-headers |
| 319 | (concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:" | 320 | (concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:" |
| 320 | "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:" | 321 | "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:" |
| @@ -359,6 +360,7 @@ go to that message and type \\[rmail-toggle-header] twice." | |||
| 359 | :type '(choice (const nil) (regexp)) | 360 | :type '(choice (const nil) (regexp)) |
| 360 | :group 'rmail-headers) | 361 | :group 'rmail-headers) |
| 361 | 362 | ||
| 363 | ;;;###autoload | ||
| 362 | (defcustom rmail-displayed-headers nil | 364 | (defcustom rmail-displayed-headers nil |
| 363 | "Regexp to match Header fields that Rmail should display. | 365 | "Regexp to match Header fields that Rmail should display. |
| 364 | If nil, display all header fields except those matched by | 366 | If nil, display all header fields except those matched by |
| @@ -366,11 +368,13 @@ If nil, display all header fields except those matched by | |||
| 366 | :type '(choice regexp (const :tag "All")) | 368 | :type '(choice regexp (const :tag "All")) |
| 367 | :group 'rmail-headers) | 369 | :group 'rmail-headers) |
| 368 | 370 | ||
| 371 | ;;;###autoload | ||
| 369 | (defcustom rmail-retry-ignored-headers "^x-authentication-warning:" | 372 | (defcustom rmail-retry-ignored-headers "^x-authentication-warning:" |
| 370 | "Headers that should be stripped when retrying a failed message." | 373 | "Headers that should be stripped when retrying a failed message." |
| 371 | :type '(choice regexp (const nil :tag "None")) | 374 | :type '(choice regexp (const nil :tag "None")) |
| 372 | :group 'rmail-headers) | 375 | :group 'rmail-headers) |
| 373 | 376 | ||
| 377 | ;;;###autoload | ||
| 374 | (defcustom rmail-highlighted-headers "^From:\\|^Subject:" | 378 | (defcustom rmail-highlighted-headers "^From:\\|^Subject:" |
| 375 | "Regexp to match Header fields that Rmail should normally highlight. | 379 | "Regexp to match Header fields that Rmail should normally highlight. |
| 376 | A value of nil means don't highlight." | 380 | A value of nil means don't highlight." |