From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Dan Katz Newsgroups: gmane.emacs.help Subject: Re: help with tags Date: Fri, 01 Aug 2003 11:41:20 -0400 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <87u191peqn.fsf@profitlogic.com> References: <844r146ock.fsf@slowfox.is.informatik.uni-duisburg.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1059760577 8487 80.91.224.249 (1 Aug 2003 17:56:17 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 1 Aug 2003 17:56:17 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Aug 01 19:56:15 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 19ie8V-0002Cc-00 for ; Fri, 01 Aug 2003 19:56:15 +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 19idUW-0003nr-Sl for geh-help-gnu-emacs@m.gmane.org; Fri, 01 Aug 2003 13:14:56 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!bloom-beacon.mit.edu!nycmny1-snh1.gtei.net!news.gtei.net!newsfeed.mathworks.com!fu-berlin.de!uni-berlin.de!12.46.106.161!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 21 Original-NNTP-Posting-Host: 12.46.106.161 Original-X-Trace: news.uni-berlin.de 1059752481 24816895 12.46.106.161 (16 [154421]) User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3 (gnu/linux) Cancel-Lock: sha1:NlvFz6B4soCriwcYt6Y/H9A9yIA= Original-Xref: shelby.stanford.edu gnu.emacs.help:115613 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:11530 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:11530 On Fri, 1 Aug 2003, Javier Oviedo wrote: > Currently, when I do find-tag, it stops on the first occurrence it > finds in the tag table. It would be nice if I could run a command > that would go to the next occurrence in the tag table. As the help for the find-tag function states (C-h f find-tag): If second arg NEXT-P is t (interactively, with prefix arg), search for another tag that matches the last tagname or regexp used. The prefix arg (a.k.a. the universal arg) is usually bound to C-u. So your session might look like this (for default key bindings): M-. foo ; Find the first 'foo' tag C-u M-. ; Goto the next one Is this what you're looking for? Dan