From a13d6523e020883906e323b4509194a4651b9459 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Francesco=20Potort=C3=AC?= Date: Tue, 12 Mar 2002 14:17:25 +0000 Subject: [PATCH] *** empty log message *** --- etc/ETAGS.EBNF | 12 ++++++------ lib-src/ChangeLog | 7 +++++++ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/etc/ETAGS.EBNF b/etc/ETAGS.EBNF index c9d053c1760..a2b835af748 100644 --- a/etc/ETAGS.EBNF +++ b/etc/ETAGS.EBNF @@ -7,11 +7,11 @@ FF ::= #x0c /* form feed */ LF ::= #x0a /* line feed */ -PATTERM ::= #x80 /* pattern terminator */ +DEL ::= #x7f /* pattern terminator */ -NAMTERM ::= #x01 /* name terminator */ +SOH ::= #x01 /* name terminator */ -regchar ::= [^#x0a#x0c#x80] /* regular character */ +regchar ::= [^#x0a#x0c#x7f] /* regular character */ regstring ::= { regchar } /* regular string */ @@ -29,13 +29,13 @@ regularsec ::= filename "," [ unsint ] [ LF fileprop ] { LF tag } filename ::= regchar regstring /* a file name */ -fileprop ::= PATTERM "(" regstring ")" +fileprop ::= DEL "(" regstring ")" tag ::= directtag | patterntag -directtag ::= PATTERM realposition +directtag ::= DEL realposition -patterntag ::= pattern PATTERM [ tagname NAMTERM ] position +patterntag ::= pattern DEL [ tagname SOH ] position pattern ::= regstring /* a tag pattern */ diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 70edeee813f..6af23763628 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,5 +1,12 @@ 2002-03-12 Francesco Potorti` + * etags.c (Python_functions): Skip spaces at beginning of lines. + (Python_functions, PHP_functions): Name tags, for ctags' sake. + (TeX_commands): Name tags. Correction of old disabled code. + + * etags.c (curfiledir, curtagfname): New global variables. + (process_file): Initialise them. + (readline): Canonicalize the name found in #line directive. 2002-03-06 Jason Rumney * etags.c (put_entries): Use #if !CTAGS, to fix link error on -- 2.39.2