From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Masatake YAMATO Newsgroups: gmane.emacs.devel Subject: Re: broken tags-apropos and list-tags Date: Fri, 04 Apr 2003 17:25:21 +0900 (JST) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <20030404.172521.13774181.jet@gyve.org> References: <20030403.205154.17868977.jet@gyve.org> <20030404.024025.71087750.jet@gyve.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1049445999 21084 80.91.224.249 (4 Apr 2003 08:46:39 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 4 Apr 2003 08:46:39 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Fri Apr 04 10:46:38 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 191MqL-0005Tw-00 for ; Fri, 04 Apr 2003 10:46:37 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 191MsK-0006hV-00 for ; Fri, 04 Apr 2003 10:48:40 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 191MgN-0000UY-0A for emacs-devel@quimby.gnus.org; Fri, 04 Apr 2003 03:36:19 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 191Maf-0007F6-00 for emacs-devel@gnu.org; Fri, 04 Apr 2003 03:30:25 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 191MaB-00077s-00 for emacs-devel@gnu.org; Fri, 04 Apr 2003 03:29:56 -0500 Original-Received: from r-maa.spacetown.ne.jp ([210.130.136.40]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 191MVq-0006Na-00; Fri, 04 Apr 2003 03:25:26 -0500 Original-Received: from localhost (mx.jp.redhat.com [219.96.218.186]) by r-maa.spacetown.ne.jp (8.11.6) with ESMTP id h348POQ11750; Fri, 4 Apr 2003 17:25:24 +0900 (JST) Original-To: rms@gnu.org In-Reply-To: X-Mailer: Mew version 3.1.52 on Emacs 21.3 / Mule 5.0 (SAKAKI) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:12884 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:12884 > 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)))