1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(search-whitespace-regexp): Fix custom type.

This commit is contained in:
Richard M. Stallman 2006-02-21 19:52:07 +00:00
parent 774a814f60
commit 51a77cba21

View file

@ -116,8 +116,11 @@ When you put a space or spaces in the incremental regexp, it stands for
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
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