From: Lars Ingebrigtsen Date: Sat, 30 Jul 2022 11:18:44 +0000 (+0200) Subject: Fix outline-minor-mode-use-buttons defcustom type X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~16^2~1886^2~642 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=40c4691355314cac57c490de3c6848a58930283a;p=emacs.git Fix outline-minor-mode-use-buttons defcustom type * lisp/outline.el (outline-minor-mode-use-buttons): Fix wrong type. --- diff --git a/lisp/outline.el b/lisp/outline.el index 6837722e644..1aba79784f5 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -288,8 +288,8 @@ The value should be a `buffer-match-p' condition. These buttons can be used to hide and show the body under the heading. Note that this feature is not meant to be used in editing buffers (yet) -- that will be amended in a future version." - :type 'boolean ;; FIXME -- is there a `buffer-match-p' defcustom type somewhere? + :type 'sexp :safe #'booleanp :version "29.1")