diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-07-30 13:18:44 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-07-30 13:18:44 +0200 |
commit | 40c4691355314cac57c490de3c6848a58930283a (patch) | |
tree | 772518d5159b4c1a6238c29647214db1a610da9b /lisp/outline.el | |
parent | 07d6b3b577239b1a240158db426397668da844a6 (diff) | |
download | emacs-40c4691355314cac57c490de3c6848a58930283a.tar.gz emacs-40c4691355314cac57c490de3c6848a58930283a.tar.bz2 emacs-40c4691355314cac57c490de3c6848a58930283a.zip |
Fix outline-minor-mode-use-buttons defcustom type
* lisp/outline.el (outline-minor-mode-use-buttons): Fix wrong type.
Diffstat (limited to 'lisp/outline.el')
-rw-r--r-- | lisp/outline.el | 2 |
1 files changed, 1 insertions, 1 deletions
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") |