]> git.eshelyaron.com Git - emacs.git/commitdiff
* info.el (Info-index): Bind completion-ignore-case.
authorChong Yidong <cyd@stupidchicken.com>
Thu, 7 Sep 2006 20:45:19 +0000 (20:45 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 7 Sep 2006 20:45:19 +0000 (20:45 +0000)
lisp/ChangeLog
lisp/info.el

index a06fb85046827032551d1beb8a4422291644627d..1d739a3b7f04e8f0c77870b8e68875adedf0192f 100644 (file)
@@ -1,3 +1,7 @@
+2006-09-07  Micha\e,Ak\e(Bl Cadilhac  <michael.cadilhac@lrde.org>
+
+       * info.el (Info-index): Bind completion-ignore-case.
+
 2006-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * progmodes/prolog.el (inferior-prolog-flavor): New var left out of
index dc08557e28d437e99551910451936ad4348dba9e..05c07220892275e7f2c61f1c38ac7cb9eda00de9 100644 (file)
@@ -2792,7 +2792,8 @@ Use the \\<Info-mode-map>\\[Info-index-next] command to see the other matches.
 Give an empty topic name to go to the Index node itself."
   (interactive
    (list
-    (let ((Info-complete-menu-buffer (clone-buffer))
+    (let ((completion-ignore-case t)
+         (Info-complete-menu-buffer (clone-buffer))
          (Info-complete-nodes (Info-index-nodes))
          (Info-history-list nil))
       (if (equal Info-current-file "dir")