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
_______________________________________________
emacs-pretest-bug mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug