From: Phil Sainty Date: Mon, 21 Oct 2019 10:57:55 +0000 (+1300) Subject: ; * lisp/so-long.el (so-long-predicate): Custom type consistency X-Git-Tag: emacs-27.0.90~626^2^2~4 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cb7b63d6e2da14eb92f8f535837fdae04c89dfb2;p=emacs.git ; * 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. --- diff --git a/lisp/so-long.el b/lisp/so-long.el index f7dfc8a79ca..e76ab791fcd 100644 --- a/lisp/so-long.el +++ b/lisp/so-long.el @@ -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)