diff options
| author | Bill Wohler | 2006-01-17 16:20:29 +0000 |
|---|---|---|
| committer | Bill Wohler | 2006-01-17 16:20:29 +0000 |
| commit | fe778a1258f881b79cc997897356c48c75bc1141 (patch) | |
| tree | 7cf035bc3106ef1fa2fd3b39b6f70900a907854a | |
| parent | 588fe8bc0a9478766a605101a90b9d861cbff2a2 (diff) | |
| download | emacs-fe778a1258f881b79cc997897356c48c75bc1141.tar.gz emacs-fe778a1258f881b79cc997897356c48c75bc1141.zip | |
(assoc-string): Fix typo in argument.
| -rw-r--r-- | lisp/mh-e/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/mh-e/mh-acros.el | 4 |
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 @@ | |||
| 1 | 2006-01-17 Bill Wohler <wohler@newt.com> | ||
| 2 | |||
| 3 | * mh-acros.el (assoc-string): Fix typo in argument. | ||
| 4 | |||
| 1 | 2006-01-16 Bill Wohler <wohler@newt.com> | 5 | 2006-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. | |||
| 157 | This function added by MH-E for Emacs versions that lack | 157 | This 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 | ||