From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.devel Subject: Info-copy-current-node-name readability Date: Sat, 03 Nov 2007 22:36:37 +0100 Message-ID: <873avn57ve.fsf@ambire.localdomain> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1194125890 5946 80.91.229.12 (3 Nov 2007 21:38:10 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 3 Nov 2007 21:38:10 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Nov 03 22:38:13 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IoQgt-0007Hx-TH for ged-emacs-devel@m.gmane.org; Sat, 03 Nov 2007 22:38:04 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IoQgj-0006fp-JB for ged-emacs-devel@m.gmane.org; Sat, 03 Nov 2007 17:37:53 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IoQgf-0006el-3G for emacs-devel@gnu.org; Sat, 03 Nov 2007 17:37:49 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IoQgd-0006eE-Ri for emacs-devel@gnu.org; Sat, 03 Nov 2007 17:37:48 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IoQgd-0006eB-Oa for emacs-devel@gnu.org; Sat, 03 Nov 2007 17:37:47 -0400 Original-Received: from ppp-39-35.21-151.libero.it ([151.21.35.39] helo=ambire.localdomain) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IoQgd-0005z4-92 for emacs-devel@gnu.org; Sat, 03 Nov 2007 17:37:47 -0400 Original-Received: from ttn by ambire.localdomain with local (Exim 4.63) (envelope-from ) id 1IoQfV-0004I0-RP for emacs-devel@gnu.org; Sat, 03 Nov 2007 22:36:37 +0100 X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. 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:82459 Archived-At: any objections to this small change to add a space between the filename and nodename? before -- "(elisp)Documentation Tips" after -- "(elisp) Documentation Tips" seems to me more readable this way. thi __________________________________________________________ *** info.el 28 Aug 2007 10:15:23 -0000 1.505 --- info.el 3 Nov 2007 21:29:46 -0000 *************** *** 3353,3359 **** (unless Info-current-node (error "No current Info node")) (let ((node (if (stringp Info-current-file) ! (concat "(" (file-name-nondirectory Info-current-file) ")" Info-current-node)))) (if (zerop (prefix-numeric-value arg)) (setq node (concat "(info \"" node "\")"))) --- 3353,3359 ---- (unless Info-current-node (error "No current Info node")) (let ((node (if (stringp Info-current-file) ! (concat "(" (file-name-nondirectory Info-current-file) ") " Info-current-node)))) (if (zerop (prefix-numeric-value arg)) (setq node (concat "(info \"" node "\")")))