emacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-commit] emacs/lisp/mh-e mh-e.el ChangeLog


From: Bill Wohler
Subject: [Emacs-commit] emacs/lisp/mh-e mh-e.el ChangeLog
Date: Fri, 10 Mar 2006 16:56:16 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Branch:         
Changes by:     Bill Wohler <address@hidden>    06/03/10 16:56:16

Modified files:
        lisp/mh-e      : mh-e.el ChangeLog 

Log message:
        (mh-profile-component): Drop `s' from mhparam -components for
        Mailutils compatibility (closes SF #1446985).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/emacs/lisp/mh-e/mh-e.el.diff?tr1=1.79&tr2=1.80&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/emacs/emacs/lisp/mh-e/ChangeLog.diff?tr1=1.176&tr2=1.177&r1=text&r2=text

Patches:
Index: emacs/lisp/mh-e/ChangeLog
diff -u emacs/lisp/mh-e/ChangeLog:1.176 emacs/lisp/mh-e/ChangeLog:1.177
--- emacs/lisp/mh-e/ChangeLog:1.176     Mon Mar  6 16:00:19 2006
+++ emacs/lisp/mh-e/ChangeLog   Fri Mar 10 16:56:16 2006
@@ -1,3 +1,8 @@
+2006-03-10  Bill Wohler  <address@hidden>
+
+       * mh-e.el (mh-profile-component): Drop `s' from mhparam
+       -components for Mailutils compatibility (closes SF #1446985).
+
 2006-03-06  Bill Wohler  <address@hidden>
 
        * mh-e.el (Version, mh-version): Add +cvs to version.
Index: emacs/lisp/mh-e/mh-e.el
diff -u emacs/lisp/mh-e/mh-e.el:1.79 emacs/lisp/mh-e/mh-e.el:1.80
--- emacs/lisp/mh-e/mh-e.el:1.79        Mon Mar  6 16:00:19 2006
+++ emacs/lisp/mh-e/mh-e.el     Fri Mar 10 16:56:16 2006
@@ -808,7 +808,9 @@
 (defun mh-profile-component (component)
   "Return COMPONENT value from mhparam, or nil if unset."
   (save-excursion
-    (mh-exec-cmd-quiet nil "mhparam" "-components" component)
+    ;; MH and nmh use -components, Mailutils uses -component. Since MH
+    ;; and nmh work with an unambiguous prefix, the `s' is dropped here.
+    (mh-exec-cmd-quiet nil "mhparam" "-component" component)
     (mh-profile-component-value component)))
 
 (defun mh-profile-component-value (component)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]