From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.comp.tex.texinfo.bugs,gmane.emacs.devel Subject: Re: Indices in Info. Date: Tue, 24 Jun 2003 20:55:09 -0500 (CDT) Sender: bug-texinfo-bounces+gnu-bug-texinfo=m.gmane.org@gnu.org Message-ID: <200306250155.h5P1t9Z15905@eel.dms.auburn.edu> References: <200306241326.h5ODQEc27294@f7.net> <200306250135.h5P1Z9215892@eel.dms.auburn.edu> NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1056506631 19138 80.91.224.249 (25 Jun 2003 02:03:51 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 25 Jun 2003 02:03:51 +0000 (UTC) Cc: karl@freefriends.org Original-X-From: bug-texinfo-bounces+gnu-bug-texinfo=m.gmane.org@gnu.org Wed Jun 25 04:03:49 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19UzX3-0004Xc-00 for ; Wed, 25 Jun 2003 03:57:09 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19UzVL-0000Tx-1L for gnu-bug-texinfo@m.gmane.org; Tue, 24 Jun 2003 21:55:23 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19UzV5-0000EU-S6 for bug-texinfo@gnu.org; Tue, 24 Jun 2003 21:55:07 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19UzV3-0000AK-50 for bug-texinfo@gnu.org; Tue, 24 Jun 2003 21:55:06 -0400 Original-Received: from manatee.dms.auburn.edu ([131.204.53.104]) by monty-python.gnu.org with esmtp (Exim 4.20) id 19UzUp-0007yX-TE; Tue, 24 Jun 2003 21:54:51 -0400 Original-Received: from eel.dms.auburn.edu (eel.dms.auburn.edu [131.204.53.108]) h5P1snoc002518; Tue, 24 Jun 2003 20:54:50 -0500 (CDT) Original-Received: (from teirllm@localhost) by eel.dms.auburn.edu (8.11.6+Sun/8.11.6) id h5P1t9Z15905; Tue, 24 Jun 2003 20:55:09 -0500 (CDT) X-Authentication-Warning: eel.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: teirllm@dms.auburn.edu In-reply-to: <200306250135.h5P1Z9215892@eel.dms.auburn.edu> (message from Luc Teirlinck on Tue, 24 Jun 2003 20:35:09 -0500 (CDT)) Original-cc: bug-texinfo@gnu.org Original-cc: emacs-devel@gnu.org X-BeenThere: bug-texinfo@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Bug reports for the GNU Texinfo documentation system List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: bug-texinfo-bounces+gnu-bug-texinfo=m.gmane.org@gnu.org Xref: main.gmane.org gmane.comp.tex.texinfo.bugs:1094 gmane.emacs.devel:15218 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:15218 Or is the following style considered preferable? (There is no difference in functionality between the two diffs, just a matter of style.) ===File ~/infodiff2========================================= cd /usr/local/share/emacs/21.3.50/lisp/ diff -c /usr/local/share/emacs/21.3.50/lisp/info.old.el /usr/local/share/emacs/21.3.50/lisp/info.el *** /usr/local/share/emacs/21.3.50/lisp/info.old.el Mon Jun 23 16:25:22 2003 --- /usr/local/share/emacs/21.3.50/lisp/info.el Tue Jun 24 20:36:37 2003 *************** *** 1564,1572 **** (skip-chars-forward " \t\n") (let ((beg (point)) str) ! (while (not (looking-at ":*[,.;() \t\n]")) ! (skip-chars-forward "^:") ! (forward-char 1)) (setq str (if (looking-at ":") (buffer-substring-no-properties beg (1- (point))) --- 1564,1574 ---- (skip-chars-forward " \t\n") (let ((beg (point)) str) ! (while ! (progn ! (skip-chars-forward "^:") ! (forward-char 1) ! (not (looking-at ":*[,.;() \t\n]")))) (setq str (if (looking-at ":") (buffer-substring-no-properties beg (1- (point))) Diff finished at Tue Jun 24 20:42:14 ============================================================