]> git.eshelyaron.com Git - emacs.git/commitdiff
* info.el (Info-apropos-matches): Make non-interactive, since it
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 3 Jul 2011 22:43:50 +0000 (00:43 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 3 Jul 2011 22:43:50 +0000 (00:43 +0200)
doesn't seem to do anything useful as a command.

Fixes: debbugs:8829
lisp/ChangeLog
lisp/info.el

index 8324f3fdb6268cba504e0be76e0e56869a79e05d..5f1f09afb07f7ab014e0512fce6669194e99192c 100644 (file)
@@ -1,3 +1,8 @@
+2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * info.el (Info-apropos-matches): Make non-interactive, since it
+       doesn't seem to do anything useful as a command (bug#8829).
+
 2011-07-03  Chong Yidong  <cyd@stupidchicken.com>
 
        * frame.el (frame-background-mode, frame-set-background-mode):
index bca41c29d0f96b84d6e21bd89e9a3ab4ad148d67..dca3df21d5cc1e89d1173f33e2cb9424d47018ee 100644 (file)
@@ -3281,7 +3281,6 @@ MATCHES is a list of index matches found by `Info-apropos-matches'.")
   "Collect STRING matches from all known Info files on your system.
 Return a list of matches where each element is in the format
 \((FILENAME INDEXTEXT NODENAME LINENUMBER))."
-  (interactive "sIndex apropos: ")
   (unless (string= string "")
     (let ((pattern (format "\n\\* +\\([^\n]*%s[^\n]*\\):[ \t]+\\([^\n]+\\)\\.\\(?:[ \t\n]*(line +\\([0-9]+\\))\\)?"
                           (regexp-quote string)))