emacs-pretest-bug
[Top][All Lists]
Advanced

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

Re: space in regexp-search


From: Richard M. Stallman
Subject: Re: space in regexp-search
Date: Sun, 12 Feb 2006 23:40:32 -0500

The right way to do what you want is to set search-whitespace-regexp
to nil.  I will make this change in the doc string and custom type to
make it clearer.

Thanks.


*** isearch.el  07 Feb 2006 18:16:13 -0500      1.283
--- isearch.el  12 Feb 2006 19:43:53 -0500      
***************
*** 116,123 ****
  this, unless it is inside of a regexp construct such as [...] or *, + or ?.
  You might want to use something like \"[ \\t\\r\\n]+\" instead.
  In the Customization buffer, that is `[' followed by a space,
! a tab, a carriage return (control-M), a newline, and `]+'."
!   :type 'regexp
    :group 'isearch)
  
  (defcustom search-invisible 'open
--- 116,126 ----
  this, unless it is inside of a regexp construct such as [...] or *, + or ?.
  You might want to use something like \"[ \\t\\r\\n]+\" instead.
  In the Customization buffer, that is `[' followed by a space,
! a tab, a carriage return (control-M), a newline, and `]+'.
! 
! When this is nil, each space you type matches literally, against one space."
!   :type '(choice (const :tag "Find Spaces Literally" nil)
!                regexp)
    :group 'isearch)
  
  (defcustom search-invisible 'open




reply via email to

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