From 0445150cafe7b28d3d928366dde6e5085732bdd8 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 29 Dec 2003 19:18:09 +0000 Subject: [PATCH] (info-lookup): Use assoc-string. --- lisp/info-look.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/info-look.el b/lisp/info-look.el index 21f265199dd..a184567ea9c 100644 --- a/lisp/info-look.el +++ b/lisp/info-look.el @@ -321,7 +321,7 @@ If optional argument QUERY is non-nil, query for the help mode." (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)) -- 2.39.2