From cb7b63d6e2da14eb92f8f535837fdae04c89dfb2 Mon Sep 17 00:00:00 2001 From: Phil Sainty Date: Mon, 21 Oct 2019 23:57:55 +1300 Subject: [PATCH] ; * 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. --- lisp/so-long.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.39.5