From: Lars Ingebrigtsen Date: Mon, 13 Sep 2021 07:24:46 +0000 (+0200) Subject: Add some search-whitespace-regexp examples X-Git-Tag: emacs-28.0.90~1023 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c1a13395260ac5d06b5cf4c75aa318653db6f812;p=emacs.git Add some search-whitespace-regexp examples * lisp/isearch.el (search-whitespace-regexp): Add some alternatives in the defcustom. --- diff --git a/lisp/isearch.el b/lisp/isearch.el index efa7db6fe9c..bebc80adb30 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -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")