emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/man/maintaining.texi


From: Francesco Potortì
Subject: [Emacs-diffs] Changes to emacs/man/maintaining.texi
Date: Thu, 06 Jun 2002 18:58:11 -0400

Index: emacs/man/maintaining.texi
diff -c emacs/man/maintaining.texi:1.17 emacs/man/maintaining.texi:1.18
*** emacs/man/maintaining.texi:1.17     Thu Jun  6 09:17:37 2002
--- emacs/man/maintaining.texi  Thu Jun  6 18:58:11 2002
***************
*** 485,493 ****
  anchored, that is, it behaves as if preceded by @samp{^}.  If you want
  to account for indentation, just match any initial number of blanks by
  beginning your regular expression with @samp{[ \t]*}.  In the regular
! expressions, @samp{\} quotes the next character, and @samp{\t} stands
! for the tab character.  Note that @code{etags} does not handle the other
! C escape sequences for special characters.
  
    The syntax of regular expressions in @code{etags} is the same as in
  Emacs.  However, non-greedy operators and shy groups are not
--- 485,514 ----
  anchored, that is, it behaves as if preceded by @samp{^}.  If you want
  to account for indentation, just match any initial number of blanks by
  beginning your regular expression with @samp{[ \t]*}.  In the regular
! expressions, @samp{\} quotes the next character, and all the
! @code{gcc} character escape sequences are supported.  Here is the list
! of the character escape sequences:
! 
! @table @samp
! @item \a
! BEL (bell).
! @item \b
! BS (back space).
! @item \d
! DEL (delete).
! @item \e
! ESC (delete).
! @item \f
! FF (form feed).
! @item \n
! NL (new line).
! @item \r
! CR (carriage return).
! @item \t
! TAB (horizontal tab).
! @item \v
! VT (vertical tab).
! @end table
  
    The syntax of regular expressions in @code{etags} is the same as in
  Emacs.  However, non-greedy operators and shy groups are not



reply via email to

[Prev in Thread] Current Thread [Next in Thread]