From: Eli Zaretskii Date: Tue, 12 May 2015 19:55:13 +0000 (+0300) Subject: Fix tags created from DEFVAR_* declarations in C X-Git-Tag: emacs-25.0.90~2110 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4f5382c6e43cb67e0da7765056866745a2295698;p=emacs.git Fix tags created from DEFVAR_* declarations in C * src/Makefile.in (TAGS): Improve the --regex argument to etags, to make tags extracted from DEFVAR_* declarations more accurate. --- diff --git a/src/Makefile.in b/src/Makefile.in index 32615c848a7..44995a45a0c 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -603,9 +603,9 @@ ctagsfiles3 = [a-zA-Z]*.m ## rather than the file contents. TAGS: $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2) $(srcdir)/$(ctagsfiles3) "$(ETAGS)" --include=../lisp/TAGS --include=$(lwlibdir)/TAGS \ - --regex='{c}/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' \ + --regex='{c}/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/\1/' \ $(srcdir)/$(ctagsfiles1) $(srcdir)/$(ctagsfiles2) \ - --regex='{objc}/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' \ + --regex='{objc}/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/\1/' \ $(srcdir)/$(ctagsfiles3) ## Arrange to make tags tables for ../lisp and ../lwlib,