Add some search-whitespace-regexp examples

* lisp/isearch.el (search-whitespace-regexp): Add some
alternatives in the defcustom.
This commit is contained in:
Lars Ingebrigtsen 2021-09-13 09:24:46 +02:00
parent d15c430a84
commit c1a1339526

View file

@ -133,6 +133,8 @@ tab, a carriage return (control-M), a newline, and `]+'. Don't
add any capturing groups into this value; that can change the
numbering of existing capture groups in unexpected ways."
:type '(choice (const :tag "Match Spaces Literally" nil)
(const :tag "Tabs and spaces" "[ \t]+")
(const :tag "Tabs, spaces and line breaks" "[ \t\n]+")
regexp)
:version "28.1")