mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
* textmodes/tex-mode.el (tex-dvi-view-command)
(tex-show-queue-command, tex-open-quote): * progmodes/ruby-mode.el (auto-mode-alist) (interpreter-mode-alist): Purecopy strings. * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Purecopy item names. * emacs-lisp/derived.el (define-derived-mode): Purecopy the doc string for the hook, keymap and abbrev table. * emacs-lisp/byte-run.el (make-obsolete): Purecopy the current name. * x-dnd.el (x-dnd-xdnd-to-action): * startup.el (fancy-startup-text, fancy-about-text): Change to defconst from defvar. * ps-print.el (ps-page-dimensions-database): Purecopy initial value. * mouse.el (mouse-buffer-menu-mode-groups, x-fixed-font-alist): Purecopy initialization strings. * mail/sendmail.el (mail-header-separator) (mail-personal-alias-file): * mail/rmail.el (rmail-default-dont-reply-to-names) (rmail-ignored-headers, rmail-retry-ignored-headers) (rmail-highlighted-headers, rmail-secondary-file-directory) (rmail-secondary-file-regexp): * files.el (null-device, file-name-invalid-regexp) (locate-dominating-stop-dir-regexp) (inhibit-first-line-modes-regexps): Purecopy initialization strings. (interpreter-mode-alist): Use mapcar instead of mapc. * buff-menu.el (Buffer-menu-mode-map): Purecopy name. * bindings.el (mode-line-major-mode-keymap): Purecopy name. (completion-ignored-extensions): (debug-ignored-errors): Purecopy strings.
This commit is contained in:
parent
0667de2146
commit
a7610c523c
15 changed files with 141 additions and 83 deletions
|
|
@ -297,7 +297,7 @@ also the To field, unless this would leave an empty To field."
|
|||
:group 'rmail-reply)
|
||||
|
||||
;;;###autoload
|
||||
(defvar rmail-default-dont-reply-to-names "\\`info-"
|
||||
(defvar rmail-default-dont-reply-to-names (purecopy "\\`info-")
|
||||
"Regexp specifying part of the default value of `rmail-dont-reply-to-names'.
|
||||
This is used when the user does not set `rmail-dont-reply-to-names'
|
||||
explicitly. (The other part of the default value is the user's
|
||||
|
|
@ -308,6 +308,7 @@ used for large mailing lists to broadcast announcements.")
|
|||
|
||||
;;;###autoload
|
||||
(defcustom rmail-ignored-headers
|
||||
(purecopy
|
||||
(concat "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^sender:"
|
||||
"\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:"
|
||||
"\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:"
|
||||
|
|
@ -324,7 +325,7 @@ used for large mailing lists to broadcast announcements.")
|
|||
"\\|^mbox-line:\\|^cancel-lock:"
|
||||
"\\|^DomainKey-Signature:\\|^dkim-signature:"
|
||||
"\\|^resent-face:\\|^resent-x.*:\\|^resent-organization:\\|^resent-openpgp:"
|
||||
"\\|^x-.*:")
|
||||
"\\|^x-.*:"))
|
||||
"Regexp to match header fields that Rmail should normally hide.
|
||||
\(See also `rmail-nonignored-headers', which overrides this regexp.)
|
||||
This variable is used for reformatting the message header,
|
||||
|
|
@ -360,14 +361,14 @@ If nil, display all header fields except those matched by
|
|||
:group 'rmail-headers)
|
||||
|
||||
;;;###autoload
|
||||
(defcustom rmail-retry-ignored-headers "^x-authentication-warning:\\|^x-detected-operating-system:\\|^x-spam[-a-z]*:\\|content-type:\\|content-transfer-encoding:\\|mime-version:"
|
||||
(defcustom rmail-retry-ignored-headers (purecopy "^x-authentication-warning:\\|^x-detected-operating-system:\\|^x-spam[-a-z]*:\\|content-type:\\|content-transfer-encoding:\\|mime-version:")
|
||||
"Headers that should be stripped when retrying a failed message."
|
||||
:type '(choice regexp (const nil :tag "None"))
|
||||
:group 'rmail-headers
|
||||
:version "23.2") ; added x-detected-operating-system, x-spam
|
||||
|
||||
;;;###autoload
|
||||
(defcustom rmail-highlighted-headers "^From:\\|^Subject:"
|
||||
(defcustom rmail-highlighted-headers (purecopy "^From:\\|^Subject:")
|
||||
"Regexp to match Header fields that Rmail should normally highlight.
|
||||
A value of nil means don't highlight. Uses the face `rmail-highlight'."
|
||||
:type 'regexp
|
||||
|
|
@ -418,12 +419,12 @@ the frame where you have the RMAIL buffer displayed."
|
|||
:group 'rmail-reply)
|
||||
|
||||
;;;###autoload
|
||||
(defcustom rmail-secondary-file-directory "~/"
|
||||
(defcustom rmail-secondary-file-directory (purecopy "~/")
|
||||
"Directory for additional secondary Rmail files."
|
||||
:type 'directory
|
||||
:group 'rmail-files)
|
||||
;;;###autoload
|
||||
(defcustom rmail-secondary-file-regexp "\\.xmail$"
|
||||
(defcustom rmail-secondary-file-regexp (purecopy "\\.xmail$")
|
||||
"Regexp for which files are secondary Rmail files."
|
||||
:type 'regexp
|
||||
:group 'rmail-files)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue