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: Re: info-xref.el :tag support Date: Thu, 18 May 2006 10:27:09 +1000 Message-ID: <87lkt02n4y.fsf@zip.com.au> References: <87wtdn4ykx.fsf@zip.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1147912075 23627 80.91.229.2 (18 May 2006 00:27:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 18 May 2006 00:27:55 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu May 18 02:27:50 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 1FgWMl-0001vK-7i for ged-emacs-devel@m.gmane.org; Thu, 18 May 2006 02:27:47 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FgWMk-0004rv-Mc for ged-emacs-devel@m.gmane.org; Wed, 17 May 2006 20:27:46 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FgWMY-0004rc-P0 for emacs-devel@gnu.org; Wed, 17 May 2006 20:27:34 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FgWMX-0004pX-IC for emacs-devel@gnu.org; Wed, 17 May 2006 20:27:34 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FgWMX-0004pM-FU for emacs-devel@gnu.org; Wed, 17 May 2006 20:27:33 -0400 Original-Received: from [61.8.0.84] (helo=mailout1.pacific.net.au) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FgWPV-0007Qi-M2 for emacs-devel@gnu.org; Wed, 17 May 2006 20:30:38 -0400 Original-Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87]) by mailout1.pacific.net.au (Postfix) with ESMTP id 541163284DF for ; Thu, 18 May 2006 10:27:29 +1000 (EST) Original-Received: from localhost (ppp2579.dyn.pacific.net.au [61.8.37.121]) by mailproxy2.pacific.net.au (8.13.4/8.13.4/Debian-3sarge1) with ESMTP id k4I0RR1P014588 for ; Thu, 18 May 2006 10:27:28 +1000 Original-Received: from gg by localhost with local (Exim 3.36 #1 (Debian)) id 1FgWMA-0001xM-00; Thu, 18 May 2006 10:27:10 +1000 Original-To: emacs-devel@gnu.org User-Agent: Gnus/5.110006 (No Gnus v0.6) 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:54672 Archived-At: I wrote: > > *** info-xref.el.~1.11.~ 2006-02-13 07:38:01.000000000 +1100 > --- info-xref.el 2006-04-17 16:47:02.000000000 +1000 > *************** > *** 301,306 **** > --- 301,309 ---- > (lambda (symbol) > (dolist (link (get symbol 'custom-links)) > (when (memq (car link) '(custom-manual info-link)) > + ;; skip :tag part of eg. (custom-manual :tag "Foo" "(foo)Node") > + (if (eq :tag (cadr link)) > + (setq link (cddr link))) Could I have this applied please. You can run M-x info-xref-check-all-custom to see the recently arisen false positives that result without it. (The report is clean apart from them, which is good :-)