From c1a13395260ac5d06b5cf4c75aa318653db6f812 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Mon, 13 Sep 2021 09:24:46 +0200 Subject: [PATCH] Add some search-whitespace-regexp examples * lisp/isearch.el (search-whitespace-regexp): Add some alternatives in the defcustom. --- lisp/isearch.el | 2 ++ 1 file changed, 2 insertions(+) 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") -- 2.39.5