diff lisp/info-look.el @ 53407:0e54e5e10501

(info-lookup): Use assoc-string.
author Richard M. Stallman <rms@gnu.org>
date Mon, 29 Dec 2003 19:18:09 +0000
parents 695cf19ef79e
children 293189a557d0
line wrap: on
line diff
--- a/lisp/info-look.el	Mon Dec 29 19:17:24 2003 +0000
+++ b/lisp/info-look.el	Mon Dec 29 19:18:09 2003 +0000
@@ -321,7 +321,7 @@
   (let* ((completions (info-lookup->completions topic mode))
          (ignore-case (info-lookup->ignore-case topic mode))
          (entry (or (assoc (if ignore-case (downcase item) item) completions)
-                    (assoc-ignore-case item completions)
+                    (assoc-string item completions t)
                     (error "Not documented as a %s: %s" topic (or item ""))))
          (modes (info-lookup->all-modes topic mode))
          (window (selected-window))