aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wohler2006-01-17 16:20:29 +0000
committerBill Wohler2006-01-17 16:20:29 +0000
commitfe778a1258f881b79cc997897356c48c75bc1141 (patch)
tree7cf035bc3106ef1fa2fd3b39b6f70900a907854a
parent588fe8bc0a9478766a605101a90b9d861cbff2a2 (diff)
downloademacs-fe778a1258f881b79cc997897356c48c75bc1141.tar.gz
emacs-fe778a1258f881b79cc997897356c48c75bc1141.zip
(assoc-string): Fix typo in argument.
-rw-r--r--lisp/mh-e/ChangeLog4
-rw-r--r--lisp/mh-e/mh-acros.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog
index 589f041c3c7..3bfd7172c9b 100644
--- a/lisp/mh-e/ChangeLog
+++ b/lisp/mh-e/ChangeLog
@@ -1,3 +1,7 @@
12006-01-17 Bill Wohler <wohler@newt.com>
2
3 * mh-acros.el (assoc-string): Fix typo in argument.
4
12006-01-16 Bill Wohler <wohler@newt.com> 52006-01-16 Bill Wohler <wohler@newt.com>
2 6
3 * mh-acros.el (require): Remove defadvice of require as defadvice 7 * mh-acros.el (require): Remove defadvice of require as defadvice
diff --git a/lisp/mh-e/mh-acros.el b/lisp/mh-e/mh-acros.el
index de2a714fc77..f126e5e3ff1 100644
--- a/lisp/mh-e/mh-acros.el
+++ b/lisp/mh-e/mh-acros.el
@@ -157,8 +157,8 @@ Case is ignored if CASE-FOLD is non-nil.
157This function added by MH-E for Emacs versions that lack 157This function added by MH-E for Emacs versions that lack
158`assoc-string', introduced in Emacs 22." 158`assoc-string', introduced in Emacs 22."
159 (if case-fold 159 (if case-fold
160 (assoc-ignore-case key alist) 160 (assoc-ignore-case key list)
161 (assoc key alist)))) 161 (assoc key list))))
162 162
163(provide 'mh-acros) 163(provide 'mh-acros)
164 164