unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* find-tag
@ 2015-11-11 20:23 Andreas Matthias
  2015-11-14 15:25 ` find-tag Andreas Matthias
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Matthias @ 2015-11-11 20:23 UTC (permalink / raw)
  To: help-gnu-emacs

I'm trying to `find-tag' a function named `foo.bar' but it seems
to be impossible to find function names containing a period.
The name is definitely listed in the TAGS file but is not found
by `find-tag'. Am I missing something?

Andreas


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: find-tag
  2015-11-11 20:23 find-tag Andreas Matthias
@ 2015-11-14 15:25 ` Andreas Matthias
  2015-11-15 20:38   ` find-tag Eli Zaretskii
  2015-11-16  0:14   ` find-tag Dmitry Gutov
  0 siblings, 2 replies; 4+ messages in thread
From: Andreas Matthias @ 2015-11-14 15:25 UTC (permalink / raw)
  To: help-gnu-emacs

Andreas Matthias wrote:

> I'm trying to `find-tag' a function named `foo.bar' but it seems
> to be impossible to find function names containing a period.
> The name is definitely listed in the TAGS file but is not found
> by `find-tag'. Am I missing something?

Digging through the code of etags.el I found etags-tags-completion-table which
contains a large regex used for parsing the TAGS file. In this regex there
are three character groups like

   [-a-zA-Z0-9_+*$:]

This seems to be the reason why function names containing periods are not
found. If I add the period in these character groups

   [-.a-zA-Z0-9_+*$:]

then `find-tag' finds function names like `foo.bar' (quite common names in Lua).

Are there reasons why the period was omitted in this regex?


Andreas


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: find-tag
  2015-11-14 15:25 ` find-tag Andreas Matthias
@ 2015-11-15 20:38   ` Eli Zaretskii
  2015-11-16  0:14   ` find-tag Dmitry Gutov
  1 sibling, 0 replies; 4+ messages in thread
From: Eli Zaretskii @ 2015-11-15 20:38 UTC (permalink / raw)
  To: help-gnu-emacs

> From: Andreas Matthias <andreas.matthias@gmail.com>
> Date: Sat, 14 Nov 2015 16:25:44 +0100
> 
> Andreas Matthias wrote:
> 
> > I'm trying to `find-tag' a function named `foo.bar' but it seems
> > to be impossible to find function names containing a period.
> > The name is definitely listed in the TAGS file but is not found
> > by `find-tag'. Am I missing something?
> 
> Digging through the code of etags.el I found etags-tags-completion-table which
> contains a large regex used for parsing the TAGS file. In this regex there
> are three character groups like
> 
>    [-a-zA-Z0-9_+*$:]
> 
> This seems to be the reason why function names containing periods are not
> found. If I add the period in these character groups
> 
>    [-.a-zA-Z0-9_+*$:]
> 
> then `find-tag' finds function names like `foo.bar' (quite common names in Lua).
> 
> Are there reasons why the period was omitted in this regex?

So is the problem with completion or with finding tags that include a
period (or both)?

In any case, I suggest to report all this, including a sample Lua
source file, using "M-x report-emacs-bug RET", and let the developers
decide whether this is a bug and how to fix it.

Thanks.



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: find-tag
  2015-11-14 15:25 ` find-tag Andreas Matthias
  2015-11-15 20:38   ` find-tag Eli Zaretskii
@ 2015-11-16  0:14   ` Dmitry Gutov
  1 sibling, 0 replies; 4+ messages in thread
From: Dmitry Gutov @ 2015-11-16  0:14 UTC (permalink / raw)
  To: Andreas Matthias, help-gnu-emacs

On 11/14/2015 05:25 PM, Andreas Matthias wrote:

> Are there reasons why the period was omitted in this regex?

More like, it was never added. Please M-x report-emacs-bug, and attach 
an example .lua file, as well as TAGS file generated from it, that's 
misbehaving.



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-11-16  0:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-11 20:23 find-tag Andreas Matthias
2015-11-14 15:25 ` find-tag Andreas Matthias
2015-11-15 20:38   ` find-tag Eli Zaretskii
2015-11-16  0:14   ` find-tag Dmitry Gutov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).