# HG changeset patch # User Richard M. Stallman # Date 1085262603 0 # Node ID 0c0b514a4952d7e2711a2f0b8e9a0da4df5ed2d3 # Parent 9b4d490eb47fdf6aa5b6e905dbf15498b0adde32 (idlwave-shell-get-object-class): Use assoc-string, not assoc-ignore-case. diff -r 9b4d490eb47f -r 0c0b514a4952 lisp/progmodes/idlw-shell.el --- 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)))