changeset 53407:0e54e5e10501

(info-lookup): Use assoc-string.
author Richard M. Stallman <rms@gnu.org>
date Mon, 29 Dec 2003 19:18:09 +0000
parents 45cc6f8abd8d
children feee9c6a79be
files lisp/info-look.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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))