aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/info.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a06fb850468..1d739a3b7f0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12006-09-07 Micha,Ak(Bl Cadilhac <michael.cadilhac@lrde.org>
2
3 * info.el (Info-index): Bind completion-ignore-case.
4
12006-09-07 Stefan Monnier <monnier@iro.umontreal.ca> 52006-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * progmodes/prolog.el (inferior-prolog-flavor): New var left out of 7 * progmodes/prolog.el (inferior-prolog-flavor): New var left out of
diff --git a/lisp/info.el b/lisp/info.el
index dc08557e28d..05c07220892 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -2792,7 +2792,8 @@ Use the \\<Info-mode-map>\\[Info-index-next] command to see the other matches.
2792Give an empty topic name to go to the Index node itself." 2792Give an empty topic name to go to the Index node itself."
2793 (interactive 2793 (interactive
2794 (list 2794 (list
2795 (let ((Info-complete-menu-buffer (clone-buffer)) 2795 (let ((completion-ignore-case t)
2796 (Info-complete-menu-buffer (clone-buffer))
2796 (Info-complete-nodes (Info-index-nodes)) 2797 (Info-complete-nodes (Info-index-nodes))
2797 (Info-history-list nil)) 2798 (Info-history-list nil))
2798 (if (equal Info-current-file "dir") 2799 (if (equal Info-current-file "dir")