diff options
| author | Francesco Potortì | 2002-06-06 22:58:11 +0000 |
|---|---|---|
| committer | Francesco Potortì | 2002-06-06 22:58:11 +0000 |
| commit | b4b39c67fce91d62c33350065ce255da4f32d4f1 (patch) | |
| tree | c9fa099362ea4e24a78510b84767e5da48c9e35c /man | |
| parent | e7d3b099a25e2a895b0b9ff3e1f7100082f170a6 (diff) | |
| download | emacs-b4b39c67fce91d62c33350065ce255da4f32d4f1.tar.gz emacs-b4b39c67fce91d62c33350065ce255da4f32d4f1.zip | |
Document Etags regexp char escape sequences.
Diffstat (limited to 'man')
| -rw-r--r-- | man/maintaining.texi | 27 |
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 | |||
| 485 | anchored, that is, it behaves as if preceded by @samp{^}. If you want | 485 | anchored, that is, it behaves as if preceded by @samp{^}. If you want |
| 486 | to account for indentation, just match any initial number of blanks by | 486 | to account for indentation, just match any initial number of blanks by |
| 487 | beginning your regular expression with @samp{[ \t]*}. In the regular | 487 | beginning your regular expression with @samp{[ \t]*}. In the regular |
| 488 | expressions, @samp{\} quotes the next character, and @samp{\t} stands | 488 | expressions, @samp{\} quotes the next character, and all the |
| 489 | for the tab character. Note that @code{etags} does not handle the other | 489 | @code{gcc} character escape sequences are supported. Here is the list |
| 490 | C escape sequences for special characters. | 490 | of the character escape sequences: |
| 491 | |||
| 492 | @table @samp | ||
| 493 | @item \a | ||
| 494 | BEL (bell). | ||
| 495 | @item \b | ||
| 496 | BS (back space). | ||
| 497 | @item \d | ||
| 498 | DEL (delete). | ||
| 499 | @item \e | ||
| 500 | ESC (delete). | ||
| 501 | @item \f | ||
| 502 | FF (form feed). | ||
| 503 | @item \n | ||
| 504 | NL (new line). | ||
| 505 | @item \r | ||
| 506 | CR (carriage return). | ||
| 507 | @item \t | ||
| 508 | TAB (horizontal tab). | ||
| 509 | @item \v | ||
| 510 | VT (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 |
| 493 | Emacs. However, non-greedy operators and shy groups are not | 514 | Emacs. However, non-greedy operators and shy groups are not |