Mercurial > emacs
changeset 53409:6f40406c2b3e
(Info-insert-dir): Use assoc-string.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 29 Dec 2003 19:18:53 +0000 |
parents | feee9c6a79be |
children | ce3a88ca37ee |
files | lisp/info.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/info.el Mon Dec 29 19:18:20 2003 +0000 +++ b/lisp/info.el Mon Dec 29 19:18:53 2003 +0000 @@ -918,7 +918,7 @@ (beginning-of-line) (setq end (point)) (push (list nodename other beg end) this-buffer-nodes))) - (if (assoc-ignore-case "top" this-buffer-nodes) + (if (assoc-string "top" this-buffer-nodes t) (setq nodes (nconc this-buffer-nodes nodes)) (setq problems t) (message "No `top' node in %s" Info-dir-file-name)))))