Revision: miles@gnu.org--gnu-2005/gnus--devo--0--patch-242
authorMiles Bader <miles@gnu.org>
Thu, 20 Oct 2005 02:15:22 +0000 (02:15 +0000)
committerMiles Bader <miles@gnu.org>
Thu, 20 Oct 2005 02:15:22 +0000 (02:15 +0000)
Merge from gnus--rel--5.10

Patches applied:

 * gnus--rel--5.10  (patch 142-144)

   - Update from CVS

2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>

   * lisp/gnus-art.el (gnus-treat-strip-trailing-blank-lines)
   (gnus-treat-strip-leading-blank-lines): Improve doc string.

   * lisp/message.el (message-tool-bar-local-item-from-menu): Fix comment.

lisp/ChangeLog
lisp/gnus-art.el
lisp/message.el

index a3d79ad..e225827 100644 (file)
@@ -5,6 +5,11 @@
 
 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
 
+       * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
+       (gnus-treat-strip-leading-blank-lines): Improve doc string.
+
+       * message.el (message-tool-bar-local-item-from-menu): Fix comment.
+
        * mm-bodies.el (mm-decode-string): Call
        `mm-charset-to-coding-system' with allow-override argument.
 
index dba3e16..8d6e3e5 100644 (file)
@@ -1209,7 +1209,10 @@ See Info node `(gnus)Customizing Articles' for details."
 (defcustom gnus-treat-strip-trailing-blank-lines nil
   "Strip trailing blank lines.
 Valid values are nil, t, `head', `last', an integer or a predicate.
-See Info node `(gnus)Customizing Articles' for details."
+See Info node `(gnus)Customizing Articles' for details.
+
+When set to t, it also strips trailing blanks in all MIME parts.
+Consider to use `last' instead."
   :group 'gnus-article-treat
   :link '(custom-manual "(gnus)Customizing Articles")
   :type gnus-article-treat-custom)
@@ -1217,7 +1220,9 @@ See Info node `(gnus)Customizing Articles' for details."
 (defcustom gnus-treat-strip-leading-blank-lines nil
   "Strip leading blank lines.
 Valid values are nil, t, `head', `last', an integer or a predicate.
-See Info node `(gnus)Customizing Articles' for details."
+See Info node `(gnus)Customizing Articles' for details.
+
+When set to t, it also strips trailing blanks in all MIME parts."
   :group 'gnus-article-treat
   :link '(custom-manual "(gnus)Customizing Articles")
   :type gnus-article-treat-custom)
index 0127c40..4f93901 100644 (file)
@@ -6684,9 +6684,8 @@ which specify the range to operate on."
 
 (defun message-tool-bar-local-item-from-menu (command icon in-map &optional from-map &rest props)
   ;; We need to make tool bar entries in local keymaps with
-  ;; `tool-bar-local-item-from-menu' in Emacs > 21.3
+  ;; `tool-bar-local-item-from-menu' in Emacs >= 22
   (if (fboundp 'tool-bar-local-item-from-menu)
-      ;; This is for Emacs 21.3
       (tool-bar-local-item-from-menu command icon in-map from-map props)
     (tool-bar-add-item-from-menu command icon from-map props)))