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-acros.el ChangeLog


From: Bill Wohler
Subject: [Emacs-commit] emacs/lisp/mh-e mh-acros.el ChangeLog
Date: Tue, 17 Jan 2006 16:20:29 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Branch:         
Changes by:     Bill Wohler <address@hidden>    06/01/17 16:20:29

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

Log message:
        (assoc-string): Fix typo in argument.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/emacs/lisp/mh-e/mh-acros.el.diff?tr1=1.15&tr2=1.16&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/emacs/emacs/lisp/mh-e/ChangeLog.diff?tr1=1.123&tr2=1.124&r1=text&r2=text

Patches:
Index: emacs/lisp/mh-e/ChangeLog
diff -u emacs/lisp/mh-e/ChangeLog:1.123 emacs/lisp/mh-e/ChangeLog:1.124
--- emacs/lisp/mh-e/ChangeLog:1.123     Tue Jan 17 03:08:25 2006
+++ emacs/lisp/mh-e/ChangeLog   Tue Jan 17 16:20:29 2006
@@ -1,3 +1,7 @@
+2006-01-17  Bill Wohler  <address@hidden>
+
+       * mh-acros.el (assoc-string): Fix typo in argument.
+
 2006-01-16  Bill Wohler  <address@hidden>
 
        * mh-acros.el (require): Remove defadvice of require as defadvice
Index: emacs/lisp/mh-e/mh-acros.el
diff -u emacs/lisp/mh-e/mh-acros.el:1.15 emacs/lisp/mh-e/mh-acros.el:1.16
--- emacs/lisp/mh-e/mh-acros.el:1.15    Mon Jan 16 21:34:50 2006
+++ emacs/lisp/mh-e/mh-acros.el Tue Jan 17 16:20:29 2006
@@ -157,8 +157,8 @@
 This function added by MH-E for Emacs versions that lack
 `assoc-string', introduced in Emacs 22."
     (if case-fold
-        (assoc-ignore-case key alist)
-      (assoc key alist))))
+        (assoc-ignore-case key list)
+      (assoc key list))))
 
 (provide 'mh-acros)
 




reply via email to

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