aboutsummaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorFrancesco Potortì2002-06-06 22:58:11 +0000
committerFrancesco Potortì2002-06-06 22:58:11 +0000
commitb4b39c67fce91d62c33350065ce255da4f32d4f1 (patch)
treec9fa099362ea4e24a78510b84767e5da48c9e35c /man
parente7d3b099a25e2a895b0b9ff3e1f7100082f170a6 (diff)
downloademacs-b4b39c67fce91d62c33350065ce255da4f32d4f1.tar.gz
emacs-b4b39c67fce91d62c33350065ce255da4f32d4f1.zip
Document Etags regexp char escape sequences.
Diffstat (limited to 'man')
-rw-r--r--man/maintaining.texi27
1 files changed, 24 insertions, 3 deletions
diff --git a/man/maintaining.texi b/man/maintaining.texi
index 221711d8b1b..3e8990f8a62 100644
--- a/man/maintaining.texi
+++ b/man/maintaining.texi
@@ -485,9 +485,30 @@ where @var{tagregexp} is used to match the lines to tag. It is always
485anchored, that is, it behaves as if preceded by @samp{^}. If you want 485anchored, that is, it behaves as if preceded by @samp{^}. If you want
486to account for indentation, just match any initial number of blanks by 486to account for indentation, just match any initial number of blanks by
487beginning your regular expression with @samp{[ \t]*}. In the regular 487beginning your regular expression with @samp{[ \t]*}. In the regular
488expressions, @samp{\} quotes the next character, and @samp{\t} stands 488expressions, @samp{\} quotes the next character, and all the
489for the tab character. Note that @code{etags} does not handle the other 489@code{gcc} character escape sequences are supported. Here is the list
490C escape sequences for special characters. 490of the character escape sequences:
491
492@table @samp
493@item \a
494BEL (bell).
495@item \b
496BS (back space).
497@item \d
498DEL (delete).
499@item \e
500ESC (delete).
501@item \f
502FF (form feed).
503@item \n
504NL (new line).
505@item \r
506CR (carriage return).
507@item \t
508TAB (horizontal tab).
509@item \v
510VT (vertical tab).
511@end table
491 512
492 The syntax of regular expressions in @code{etags} is the same as in 513 The syntax of regular expressions in @code{etags} is the same as in
493Emacs. However, non-greedy operators and shy groups are not 514Emacs. However, non-greedy operators and shy groups are not