From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.emacs.devel Subject: Info-index-next report key with where-is Date: Tue, 18 Apr 2006 08:39:33 +1000 Message-ID: <87psjf4yje.fsf@zip.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1145313598 23257 80.91.229.2 (17 Apr 2006 22:39:58 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 17 Apr 2006 22:39:58 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Apr 18 00:39:58 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FVcNt-0005Ai-4O for ged-emacs-devel@m.gmane.org; Tue, 18 Apr 2006 00:39:53 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FVcNs-0006D1-8S for ged-emacs-devel@m.gmane.org; Mon, 17 Apr 2006 18:39:52 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FVcNh-0006Cw-9r for emacs-devel@gnu.org; Mon, 17 Apr 2006 18:39:41 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FVcNg-0006CE-5n for emacs-devel@gnu.org; Mon, 17 Apr 2006 18:39:40 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FVcNg-0006CB-03 for emacs-devel@gnu.org; Mon, 17 Apr 2006 18:39:40 -0400 Original-Received: from [61.8.0.115] (helo=mailout2.pacific.net.au) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FVcOQ-0003Rf-0D for emacs-devel@gnu.org; Mon, 17 Apr 2006 18:40:26 -0400 Original-Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86]) by mailout2.pacific.net.au (Postfix) with ESMTP id 7DFC26ECF1 for ; Tue, 18 Apr 2006 08:39:38 +1000 (EST) Original-Received: from localhost (ppp2424.dyn.pacific.net.au [61.8.36.36]) by mailproxy1.pacific.net.au (8.13.4/8.13.4/Debian-3sarge1) with ESMTP id k3HM2RqO005075 for ; Tue, 18 Apr 2006 08:02:27 +1000 Original-Received: from gg by localhost with local (Exim 3.36 #1 (Debian)) id 1FVcNZ-0001yF-00; Tue, 18 Apr 2006 08:39:33 +1000 Original-To: emacs-devel@gnu.org User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/21.4 (gnu/linux) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:52982 Archived-At: --=-=-= A suggestion for accuracy in the Info-index-next information message, 2006-04-17 Kevin Ryde * info.el (Info-index-next): Use where-is-internal to report actual binding of Info-index-next, rather than hard coding `,'. --=-=-= Content-Disposition: attachment; filename=info.el.index-where-is.diff *** info.el.~1.483.~ 2006-04-09 09:18:52.000000000 +1000 --- info.el 2006-04-17 15:15:00.000000000 +1000 *************** *** 2866,2873 **** (car (car Info-index-alternatives)) (nth 2 (car Info-index-alternatives)) (if (cdr Info-index-alternatives) ! (format "(%s total; use `,' for next)" ! (length Info-index-alternatives)) "(Only match)"))) (defun Info-find-index-name (name) --- 2866,2876 ---- (car (car Info-index-alternatives)) (nth 2 (car Info-index-alternatives)) (if (cdr Info-index-alternatives) ! (format "(%s total; use `%s' for next)" ! (length Info-index-alternatives) ! (key-description (where-is-internal ! 'Info-index-next overriding-local-map ! t))) "(Only match)"))) (defun Info-find-index-name (name) --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-devel mailing list Emacs-devel@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-devel --=-=-=--