Mercurial > emacs
changeset 55729:0c0b514a4952
(idlwave-shell-get-object-class): Use assoc-string, not assoc-ignore-case.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 22 May 2004 21:50:03 +0000 |
parents | 9b4d490eb47f |
children | b4eeb441c089 |
files | lisp/progmodes/idlw-shell.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/idlw-shell.el Sat May 22 07:44:30 2004 +0000 +++ b/lisp/progmodes/idlw-shell.el Sat May 22 21:50:03 2004 +0000 @@ -1823,8 +1823,8 @@ 'hide 'wait) ;; If we don't know anything about the class, update shell routines (if (and idlwave-shell-get-object-class - (not (assoc-ignore-case idlwave-shell-get-object-class - (idlwave-class-alist)))) + (not (assoc-string idlwave-shell-get-object-class + (idlwave-class-alist) t))) (idlwave-shell-maybe-update-routine-info)) idlwave-shell-get-object-class)))