aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2006-09-07 20:45:19 +0000
committerChong Yidong2006-09-07 20:45:19 +0000
commitea71ffe83eae9e39436621d88622dd4a77a494f7 (patch)
treea413ede610efac2a3dde51ab3eaf345060ad2158
parentb37b6d110ddf3e06a408594347acc656042bcec2 (diff)
downloademacs-ea71ffe83eae9e39436621d88622dd4a77a494f7.tar.gz
emacs-ea71ffe83eae9e39436621d88622dd4a77a494f7.zip
* info.el (Info-index): Bind completion-ignore-case.
-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")