emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lispref/searching.texi


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lispref/searching.texi
Date: Tue, 04 Feb 2003 09:48:10 -0500

Index: emacs/lispref/searching.texi
diff -c emacs/lispref/searching.texi:1.41 emacs/lispref/searching.texi:1.42
*** emacs/lispref/searching.texi:1.41   Sat Dec  7 08:36:01 2002
--- emacs/lispref/searching.texi        Tue Feb  4 09:47:54 2003
***************
*** 1,7 ****
  @c -*-texinfo-*-
  @c This is part of the GNU Emacs Lisp Reference Manual.
  @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999
! @c   Free Software Foundation, Inc. 
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/searching
  @node Searching and Matching, Syntax Tables, Non-ASCII Characters, Top
--- 1,7 ----
  @c -*-texinfo-*-
  @c This is part of the GNU Emacs Lisp Reference Manual.
  @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999
! @c   Free Software Foundation, Inc.
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/searching
  @node Searching and Matching, Syntax Tables, Non-ASCII Characters, Top
***************
*** 325,331 ****
  is @address@hidden, the other is @address@hidden@var{c2}}, where
  @var{c1} is the first character of the charset to which @var{c2}
  belongs.
!  
  You cannot always match all address@hidden characters with the regular
  expression @code{"[\200-\377]"}.  This works when searching a unibyte
  buffer or string (@pxref{Text Representations}), but not in a multibyte
--- 325,331 ----
  is @address@hidden, the other is @address@hidden@var{c2}}, where
  @var{c1} is the first character of the charset to which @var{c2}
  belongs.
! 
  You cannot always match all address@hidden characters with the regular
  expression @code{"[\200-\377]"}.  This works when searching a unibyte
  buffer or string (@pxref{Text Representations}), but not in a multibyte
***************
*** 670,676 ****
  
    Here is a complicated regexp, used by Emacs to recognize the end of a
  sentence together with any whitespace that follows.  It is the value of
! the variable @code{sentence-end}.  
  
    First, we show the regexp as a string in Lisp syntax to distinguish
  spaces from tab characters.  The string constant begins and ends with a
--- 670,676 ----
  
    Here is a complicated regexp, used by Emacs to recognize the end of a
  sentence together with any whitespace that follows.  It is the value of
! the variable @code{sentence-end}.
  
    First, we show the regexp as a string in Lisp syntax to distinguish
  spaces from tab characters.  The string constant begins and ends with a
***************
*** 689,695 ****
  @example
  @group
  sentence-end
!      @result{} "[.?!][]\"')@}]*\\($\\| $\\|  \\|  \\)[       
  ]*"
  @end group
  @end example
--- 689,695 ----
  @example
  @group
  sentence-end
!      @result{} "[.?!][]\"')@}]*\\($\\| $\\|  \\|  \\)[
  ]*"
  @end group
  @end example
***************
*** 1325,1331 ****
  @group
  (string-match "\\(qu\\)\\(ick\\)"
                "The quick fox jumped quickly.")
!               ;0123456789      
       @result{} 4
  @end group
  
--- 1325,1331 ----
  @group
  (string-match "\\(qu\\)\\(ick\\)"
                "The quick fox jumped quickly.")
!               ;0123456789
       @result{} 4
  @end group
  




reply via email to

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