diff options
| author | K. Handa <handa@gnu.org> | 2015-09-02 18:28:54 +0900 | 
|---|---|---|
| committer | K. Handa <handa@gnu.org> | 2015-09-02 18:28:54 +0900 | 
| commit | e7b62736aade24620c8ba6fa6bd467d017f16ee0 (patch) | |
| tree | d00a2203437a168b2414c6b73afc00a88d90b4b1 /lisp/gnus | |
| parent | ae08d073d7e2738580341534adc3c5924dc76860 (diff) | |
| parent | 30866274e21c5f0a1c5f60cfe290743e7d482349 (diff) | |
| download | emacs-e7b62736aade24620c8ba6fa6bd467d017f16ee0.tar.gz | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'lisp/gnus')
| -rw-r--r-- | lisp/gnus/gnus-art.el | 6 | ||||
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/gnus-util.el | 8 | ||||
| -rw-r--r-- | lisp/gnus/nndiary.el | 8 | ||||
| -rw-r--r-- | lisp/gnus/nnmail.el | 4 | 
5 files changed, 14 insertions, 14 deletions
| diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index b4a2f6a1773..01eb6c5cd48 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el @@ -330,7 +330,7 @@ to match a mail address in the From: header, BANNER is one of a symbol  If ADDRESS matches author's mail address, it will remove things like  advertisements.  For example: -\((\"@yoo-hoo\\\\.co\\\\.jp\\\\'\" . \"\\n_+\\nDo You Yoo-hoo!\\\\?\\n.*\\n.*\\n\")) +\((\"@yoo-hoo\\\\.co\\\\.jp\\\\\\='\" . \"\\n_+\\nDo You Yoo-hoo!\\\\?\\n.*\\n.*\\n\"))  "    :type '(repeat  	  (cons @@ -886,12 +886,12 @@ Here are examples:  ;; Specify the altitude of Face images in the From header.  \(setq gnus-face-properties-alist -      '((pbm . (:face gnus-x-face :ascent 80)) +      \\='((pbm . (:face gnus-x-face :ascent 80))  	(png . (:ascent 80))))  ;; Show Face images as pressed buttons.  \(setq gnus-face-properties-alist -      '((pbm . (:face gnus-x-face :relief -2)) +      \\='((pbm . (:face gnus-x-face :relief -2))  	(png . (:relief -2))))  See the manual for the valid properties for various image types. diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 447bd5d56f2..6b90204beb6 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el @@ -1656,7 +1656,7 @@ while still allowing them to affect operations done in other buffers.  For example:  \(setq gnus-newsgroup-variables -     '(message-use-followup-to +     \\='(message-use-followup-to         (gnus-visible-headers .  	 \"^From:\\\\|^Newsgroups:\\\\|^Subject:\\\\|^Date:\\\\|^To:\")))  ") diff --git a/lisp/gnus/gnus-util.el b/lisp/gnus/gnus-util.el index 54cf099e078..215eac88aef 100644 --- a/lisp/gnus/gnus-util.el +++ b/lisp/gnus/gnus-util.el @@ -1974,10 +1974,10 @@ to case differences."  	       (string-equal (downcase str1) (downcase prefix))  	     (string-equal str1 prefix)))))) -(if (fboundp 'format-message) -    (defalias 'gnus-format-message 'format-message) -  ;; for Emacs < 25, and XEmacs, don't worry about quote translation. -  (defalias 'gnus-format-message 'format)) +(defalias 'gnus-format-message +  (if (fboundp 'format-message) 'format-message +    ;; for Emacs < 25, and XEmacs, don't worry about quote translation. +    'format))  ;; Simple check: can be a macro but this way, although slow, it's really clear.  ;; We don't use `bound-and-true-p' because it's not in XEmacs. diff --git a/lisp/gnus/nndiary.el b/lisp/gnus/nndiary.el index 31344382029..a6e75b739dd 100644 --- a/lisp/gnus/nndiary.el +++ b/lisp/gnus/nndiary.el @@ -151,15 +151,15 @@ maximum in the reminder is not that painful, I think.  Although this  scheme might appear somewhat weird at a first glance, it is very powerful.  In order to make this clear, here are some examples: -- '(0 . day): this is the default value of `nndiary-reminders'.  It means +- (0 . day): this is the default value of `nndiary-reminders'.  It means    pop up the appointments of the day each morning at 00:00. -- '(1 . day): this means pop up the appointments the day before, at 00:00. +- (1 . day): this means pop up the appointments the day before, at 00:00. -- '(6 . hour): for an appointment at 18:30, this would pop up the +- (6 . hour): for an appointment at 18:30, this would pop up the    appointment message at 12:00. -- '(360 . minute): for an appointment at 18:30 and 15 seconds, this would +- (360 . minute): for an appointment at 18:30 and 15 seconds, this would    pop up the appointment message at 12:30."    :group 'nndiary    :type '(repeat (cons :format "%v\n" diff --git a/lisp/gnus/nnmail.el b/lisp/gnus/nnmail.el index 2292849ccb1..681116017ba 100644 --- a/lisp/gnus/nnmail.el +++ b/lisp/gnus/nnmail.el @@ -217,7 +217,7 @@ will try to match against both the From and the To header.  Example:  \(setq nnmail-fancy-expiry-targets -      '((to-from \"boss\" \"nnfolder:Work\") +      \\='((to-from \"boss\" \"nnfolder:Work\")  	(\"Subject\" \"IMPORTANT\" \"nnfolder:IMPORTANT.%Y.%b\")  	(\"from\" \".*\" \"nnfolder:Archive-%Y\"))) @@ -465,7 +465,7 @@ GROUP: Mail will be stored in GROUP (a string).  junk: Mail will be deleted.  Use with care!  Do not submerge in water!    Example:    (setq nnmail-split-fancy -	'(| (\"Subject\" \"MAKE MONEY FAST\" junk) +	\\='(| (\"Subject\" \"MAKE MONEY FAST\" junk)  	    ...other.rules.omitted...))  FIELD must match a complete field name.  VALUE must match a complete | 
