changeset 69078:fba8c045e2a0

(search-whitespace-regexp): Fix custom type.
author Richard M. Stallman <rms@gnu.org>
date Tue, 21 Feb 2006 19:52:07 +0000
parents f8759a14f4cd
children 68ba98572eb9
files lisp/isearch.el
diffstat 1 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/isearch.el	Tue Feb 21 19:51:37 2006 +0000
+++ b/lisp/isearch.el	Tue Feb 21 19:52:07 2006 +0000
@@ -116,8 +116,11 @@
 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