1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-02 08:22:22 +00:00

(assoc-string): Fix typo in argument.

This commit is contained in:
Bill Wohler 2006-01-17 16:20:29 +00:00
parent 588fe8bc0a
commit fe778a1258
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2006-01-17 Bill Wohler <wohler@newt.com>
* mh-acros.el (assoc-string): Fix typo in argument.
2006-01-16 Bill Wohler <wohler@newt.com>
* mh-acros.el (require): Remove defadvice of require as defadvice

View File

@ -157,8 +157,8 @@ Case is ignored if CASE-FOLD is non-nil.
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)