diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-09-04 16:29:06 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-09-04 16:29:06 +0200 |
commit | ad6878005dbde428809c1f587555238892dd253d (patch) | |
tree | caa0740feaa03f1a91f9ef7a42c941d2daff9bf5 /lisp/outline.el | |
parent | 9aed695241a8919d422d5812dd62325720961153 (diff) | |
download | emacs-ad6878005dbde428809c1f587555238892dd253d.tar.gz emacs-ad6878005dbde428809c1f587555238892dd253d.tar.bz2 emacs-ad6878005dbde428809c1f587555238892dd253d.zip |
Add a basic widget type for buffer predicates
* lisp/paren.el (show-paren-predicate):
* lisp/outline.el (outline-minor-mode-use-buttons): Use it.
* lisp/wid-edit.el (buffer-predicate): New widget type.
Diffstat (limited to 'lisp/outline.el')
-rw-r--r-- | lisp/outline.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/outline.el b/lisp/outline.el index 2e18fd5b8fe..178cbe30715 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -288,8 +288,7 @@ 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." - ;; FIXME -- is there a `buffer-match-p' defcustom type somewhere? - :type 'sexp + :type 'buffer-predicate :safe #'booleanp :version "29.1") |