]> git.eshelyaron.com Git - emacs.git/commitdiff
(search-whitespace-regexp): Fix custom type.
authorRichard M. Stallman <rms@gnu.org>
Tue, 21 Feb 2006 19:52:07 +0000 (19:52 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 21 Feb 2006 19:52:07 +0000 (19:52 +0000)
lisp/isearch.el

index ba700a893eb544b64d314d44e4f94ec5ed5ab924..8649ba520feb347b1875e7c11baf43abdbf823f3 100644 (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