]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix defcustom type in whitespace.el
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 25 Sep 2020 13:35:23 +0000 (15:35 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 25 Sep 2020 13:35:23 +0000 (15:35 +0200)
* lisp/whitespace.el (whitespace-space-after-tab-regexp)
(whitespace-indentation-regexp): The first string here isn't a
regexp, it's a string (that's expanded with format to be a regexp).

lisp/whitespace.el

index 83551053033c28ef7904a0d0df8d10bf8074de1d..2e05d93bf59a2ad6676af18fc1dee810559f4a22 100644 (file)
@@ -728,7 +728,7 @@ and the cons cdr is used for TABs visualization.
 
 Used when `whitespace-style' includes `indentation',
 `indentation::tab' or  `indentation::space'."
-  :type '(cons (regexp :tag "Indentation SPACEs")
+  :type '(cons (string :tag "Indentation SPACEs")
               (regexp :tag "Indentation TABs"))
   :group 'whitespace)
 
@@ -759,8 +759,8 @@ and the cons cdr is used for TABs visualization.
 
 Used when `whitespace-style' includes `space-after-tab',
 `space-after-tab::tab' or `space-after-tab::space'."
-  :type '(cons (regexp :tag "SPACEs After TAB")
-              regexp)
+  :type '(cons (string :tag "SPACEs After TAB")
+              string)
   :group 'whitespace)
 
 (defcustom whitespace-big-indent-regexp