From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.bugs Subject: Re: [agj@alum.mit.edu: Re: ":" in Scheme names.] Date: Sun, 26 Jan 2003 15:11:14 -0800 Sender: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <20030125023704.BD2197DB@mail.voluntocracy.org> <5xof63vgdc.fsf@kfs2.cua.dk> Reply-To: ttn@glug.org NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1043624325 24231 80.91.224.249 (26 Jan 2003 23:38:45 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 26 Jan 2003 23:38:45 +0000 (UTC) Cc: agj@alum.mit.edu 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 18cwMO-0006He-00 for ; Mon, 27 Jan 2003 00:38:44 +0100 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 18cwMu-0003FK-05 for gnu-bug-gnu-emacs@m.gmane.org; Sun, 26 Jan 2003 18:39:16 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18cwIG-00027X-00 for bug-gnu-emacs@gnu.org; Sun, 26 Jan 2003 18:34:28 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18cwHL-0001hx-00 for bug-gnu-emacs@gnu.org; Sun, 26 Jan 2003 18:33:47 -0500 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18cwGr-0001Rs-00 for bug-gnu-emacs@gnu.org; Sun, 26 Jan 2003 18:33:01 -0500 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by fencepost.gnu.org with esmtp (Exim 4.10) id 18cwGS-00081j-00 for bug-emacs@gnu.org; Sun, 26 Jan 2003 18:32:36 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18cwDG-0000cX-00 for bug-emacs@gnu.org; Sun, 26 Jan 2003 18:29:34 -0500 Original-Received: from ca-crlsca-cuda3-c6a-b-211.crlsca.adelphia.net ([68.71.15.211] helo=giblet.glug.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18cw4y-0006MW-00 for bug-emacs@gnu.org; Sun, 26 Jan 2003 18:20:44 -0500 Original-Received: from ttn by giblet.glug.org with local (Exim 3.35 #1 (Debian)) id 18cvvm-0008MC-00; Sun, 26 Jan 2003 15:11:14 -0800 Original-To: bug-emacs@gnu.org In-reply-to: <5xof63vgdc.fsf@kfs2.cua.dk> (no-spam@cua.dk) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:4324 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:4324 From: no-spam@cua.dk (Kim F. Storm) Date: 26 Jan 2003 20:51:59 +0100 Your change broke a lot of *note .... :: links where the :: is not followed by a space, like these: (*note some note::) some text, *note some note::, more text Try C-h i m elisp RET i signal RET TAB RET I've installed a fix to CVS to stop searching for the end of the reference when a comma, period, semicolon, or right parenthesis follows the last colon. thanks for catching this. However, I'm not sure this the right fix. It would probably be better to specify the characters which shall cause a continued search if they follow a colon, but I'm not sure what characters to include... if i understand correctly, you mean to replace while-not, w/ simply while. initially i tried something like: (while (looking-at ":*\\sw") ...) but testing against elisp index fails for "&rest" and anything else w/ chars not in the word-constituent syntax class. unless there is a way to create a syntax class that is \sw plus \s- plus \s_ minus ":", i think we are stuck w/ explicitly enumerating trailing context. the fixed info.el appears to be enough for now; we just need to track makeinfo (x)ref rendering (not a big deal -- i don't think that is changing very much). thi