[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/gnus/message.el [emacs-unicode-2]
From: |
Miles Bader |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/gnus/message.el [emacs-unicode-2] |
Date: |
Fri, 22 Oct 2004 06:22:04 -0400 |
Index: emacs/lisp/gnus/message.el
diff -c emacs/lisp/gnus/message.el:1.55.4.5 emacs/lisp/gnus/message.el:1.55.4.6
*** emacs/lisp/gnus/message.el:1.55.4.5 Thu Oct 14 08:50:05 2004
--- emacs/lisp/gnus/message.el Fri Oct 22 10:13:32 2004
***************
*** 255,261 ****
:group 'message-news
:group 'message-headers
:link '(custom-manual "(message)Message Headers")
! :type 'regexp)
(defcustom message-ignored-mail-headers
"^[GF]cc:\\|^Resent-Fcc:\\|^Xref:\\|^X-Draft-From:\\|^X-Gnus-Agent-Meta-Information:"
--- 255,266 ----
:group 'message-news
:group 'message-headers
:link '(custom-manual "(message)Message Headers")
! :type '(repeat :value-to-internal (lambda (widget value)
! (custom-split-regexp-maybe value))
! :match (lambda (widget value)
! (or (stringp value)
! (widget-editable-list-match widget value)))
! regexp))
(defcustom message-ignored-mail-headers
"^[GF]cc:\\|^Resent-Fcc:\\|^Xref:\\|^X-Draft-From:\\|^X-Gnus-Agent-Meta-Information:"
***************
*** 271,277 ****
any confusion."
:group 'message-interface
:link '(custom-manual "(message)Superseding")
! :type 'regexp)
(defcustom message-subject-re-regexp
"^[ \t]*\\([Rr][Ee]\\(\\[[0-9]*\\]\\)*:[ \t]*\\)*[ \t]*"
--- 276,287 ----
any confusion."
:group 'message-interface
:link '(custom-manual "(message)Superseding")
! :type '(repeat :value-to-internal (lambda (widget value)
! (custom-split-regexp-maybe value))
! :match (lambda (widget value)
! (or (stringp value)
! (widget-editable-list-match widget value)))
! regexp))
(defcustom message-subject-re-regexp
"^[ \t]*\\([Rr][Ee]\\(\\[[0-9]*\\]\\)*:[ \t]*\\)*[ \t]*"
***************
*** 534,546 ****
"*All headers that match this regexp will be deleted when resending a
message."
:group 'message-interface
:link '(custom-manual "(message)Resending")
! :type 'regexp)
(defcustom message-forward-ignored-headers
"^Content-Transfer-Encoding:\\|^X-Gnus"
"*All headers that match this regexp will be deleted when forwarding a
message."
:version "21.1"
:group 'message-forwarding
! :type '(choice (const :tag "None" nil)
regexp))
(defcustom message-ignored-cited-headers "."
--- 544,565 ----
"*All headers that match this regexp will be deleted when resending a
message."
:group 'message-interface
:link '(custom-manual "(message)Resending")
! :type '(repeat :value-to-internal (lambda (widget value)
! (custom-split-regexp-maybe value))
! :match (lambda (widget value)
! (or (stringp value)
! (widget-editable-list-match widget value)))
! regexp))
(defcustom message-forward-ignored-headers
"^Content-Transfer-Encoding:\\|^X-Gnus"
"*All headers that match this regexp will be deleted when forwarding a
message."
:version "21.1"
:group 'message-forwarding
! :type '(repeat :value-to-internal (lambda (widget value)
! (custom-split-regexp-maybe value))
! :match (lambda (widget value)
! (or (stringp value)
! (widget-editable-list-match widget value)))
regexp))
(defcustom message-ignored-cited-headers "."
***************
*** 2610,2616 ****
(defun message-goto-mail-followup-to ()
"Move point to the Mail-Followup-To header."
(interactive)
! (message-position-on-field "Mail-Followup-To" "From"))
(defun message-goto-keywords ()
"Move point to the Keywords header."
--- 2629,2635 ----
(defun message-goto-mail-followup-to ()
"Move point to the Mail-Followup-To header."
(interactive)
! (message-position-on-field "Mail-Followup-To" "To"))
(defun message-goto-keywords ()
"Move point to the Keywords header."
***************
*** 2720,2725 ****
--- 2739,2745 ----
;; FIXME: Should compare only the address and not the full name. Comparison
;; should be done case-folded (and with `string=' rather than
;; `string-match').
+ ;; (mail-strip-quoted-names "Foo Bar <address@hidden>, address@hidden (Bla
Fasel)")
(dolist (header headers)
(let* ((header-name (symbol-name (car header)))
(new-header (cdr header))