diff options
| author | Richard M. Stallman | 2003-12-29 19:18:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-12-29 19:18:09 +0000 |
| commit | 0445150cafe7b28d3d928366dde6e5085732bdd8 (patch) | |
| tree | 89640d3e53d6dc4deeec9af6941532628116991d | |
| parent | 7f18ce220c404f8003ea2c6a7fb51573b8d5b67c (diff) | |
| download | emacs-0445150cafe7b28d3d928366dde6e5085732bdd8.tar.gz emacs-0445150cafe7b28d3d928366dde6e5085732bdd8.zip | |
(info-lookup): Use assoc-string.
| -rw-r--r-- | lisp/info-look.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 321 | (let* ((completions (info-lookup->completions topic mode)) | 321 | (let* ((completions (info-lookup->completions topic mode)) |
| 322 | (ignore-case (info-lookup->ignore-case topic mode)) | 322 | (ignore-case (info-lookup->ignore-case topic mode)) |
| 323 | (entry (or (assoc (if ignore-case (downcase item) item) completions) | 323 | (entry (or (assoc (if ignore-case (downcase item) item) completions) |
| 324 | (assoc-ignore-case item completions) | 324 | (assoc-string item completions t) |
| 325 | (error "Not documented as a %s: %s" topic (or item "")))) | 325 | (error "Not documented as a %s: %s" topic (or item "")))) |
| 326 | (modes (info-lookup->all-modes topic mode)) | 326 | (modes (info-lookup->all-modes topic mode)) |
| 327 | (window (selected-window)) | 327 | (window (selected-window)) |