1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

; * lisp/so-long.el (so-long-predicate): Custom type consistency

This is for consistency with the other function options, which all
used the 'radio' custom type.
This commit is contained in:
Phil Sainty 2019-10-21 23:57:55 +13:00
parent e9dca2b5aa
commit cb7b63d6e2

View file

@ -545,8 +545,8 @@ The specified function will be called with no arguments. If it returns non-nil
then `so-long' will be invoked.
Defaults to `so-long-detected-long-line-p'."
:type '(choice (const so-long-detected-long-line-p)
(function :tag "Custom function"))
:type '(radio (const so-long-detected-long-line-p)
(function :tag "Custom function"))
:package-version '(so-long . "1.0")
:group 'so-long)