emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/man/search.texi [lexbind]
Date: Mon, 25 Oct 2004 00:47:26 -0400

Index: emacs/man/search.texi
diff -c emacs/man/search.texi:1.33.2.11 emacs/man/search.texi:1.33.2.12
*** emacs/man/search.texi:1.33.2.11     Sat Sep  4 09:28:14 2004
--- emacs/man/search.texi       Mon Oct 25 04:19:40 2004
***************
*** 1,5 ****
  @c This is part of the Emacs manual.
! @c Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 2000, 2001
  @c   Free Software Foundation, Inc.
  @c See file emacs.texi for copying conditions.
  @node Search, Fixit, Display, Top
--- 1,5 ----
  @c This is part of the Emacs manual.
! @c Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 2000, 2001, 2004
  @c   Free Software Foundation, Inc.
  @c See file emacs.texi for copying conditions.
  @node Search, Fixit, Display, Top
***************
*** 193,201 ****
  character or word.
  
    @kbd{C-y} is similar to @kbd{C-w} but copies all the rest of the
! current line into the search string.  Both @kbd{C-y} and @kbd{C-w}
! convert the text they copy to lower case if the search is currently
! not case-sensitive; this is so the search remains case-insensitive.
  
    @kbd{C-M-w} and @kbd{C-M-y} modify the search string by only one
  character at a time: @kbd{C-M-w} deletes the last character from the
--- 193,203 ----
  character or word.
  
    @kbd{C-y} is similar to @kbd{C-w} but copies all the rest of the
! current line into the search string.  If point is already at the end
! of a line, it grabs the entire next line.  Both @kbd{C-y} and
! @kbd{C-w} convert the text they copy to lower case if the search is
! currently not case-sensitive; this is so the search remains
! case-insensitive.
  
    @kbd{C-M-w} and @kbd{C-M-y} modify the search string by only one
  character at a time: @kbd{C-M-w} deletes the last character from the
***************
*** 777,789 ****
    The constructs that pertain to words and syntax are controlled by the
  setting of the syntax table (@pxref{Syntax}).
  
!   Here is a complicated regexp, stored in @code{sentence-end} and used
! by Emacs to recognize the end of a sentence together with any
! whitespace that follows.  We show its Lisp syntax to distinguish the
! spaces from the tab characters.  In Lisp syntax, the string constant
! begins and ends with a double-quote.  @samp{\"} stands for a
! double-quote as part of the regexp, @samp{\\} for a backslash as part
! of the regexp, @samp{\t} for a tab, and @samp{\n} for a newline.
  
  @example
  "[.?!][]\"')]*\\($\\| $\\|\t\\|  \\)[ \t\n]*"
--- 779,791 ----
    The constructs that pertain to words and syntax are controlled by the
  setting of the syntax table (@pxref{Syntax}).
  
!   Here is a complicated regexp.  It is a simplified version of the
! regexp that Emacs uses, by default, to recognize the end of a sentence
! together with any whitespace that follows.  We show its Lisp syntax to
! distinguish the spaces from the tab characters.  In Lisp syntax, the
! string constant begins and ends with a double-quote.  @samp{\"} stands
! for a double-quote as part of the regexp, @samp{\\} for a backslash as
! part of the regexp, @samp{\t} for a tab, and @samp{\n} for a newline.
  
  @example
  "[.?!][]\"')]*\\($\\| $\\|\t\\|  \\)[ \t\n]*"




reply via email to

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