emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: broken tags-apropos and list-tags


From: Masatake YAMATO
Subject: Re: broken tags-apropos and list-tags
Date: Fri, 04 Apr 2003 17:25:21 +0900 (JST)

> How about making Info-goto-emacs-command-node accept either a symbol
> or a string?

I did.

Index: lisp/info.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/info.el,v
retrieving revision 1.341
diff -u -r1.341 info.el
--- lisp/info.el        10 Mar 2003 13:04:10 -0000      1.341
+++ lisp/info.el        4 Apr 2003 08:23:42 -0000
@@ -2588,6 +2588,8 @@
 or in another manual found via COMMAND's `info-file' property or
 the variable `Info-file-list-for-emacs'."
   (interactive "CFind documentation for command: ")
+  (if (stringp command)
+      (setq command (intern command)))
   (or (commandp command)
       (signal 'wrong-type-argument (list 'commandp command)))
   (let ((where (Info-find-emacs-command-nodes command)))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]