summaryrefslogtreecommitdiff
path: root/lisp/so-long.el
diff options
context:
space:
mode:
authorPhil Sainty <psainty@orcon.net.nz>2019-10-21 23:57:55 +1300
committerPhil Sainty <psainty@orcon.net.nz>2019-11-15 00:39:13 +1300
commitcb7b63d6e2da14eb92f8f535837fdae04c89dfb2 (patch)
treef349195cb0bc6aa77fda1fcff79e50c0a98a9d2e /lisp/so-long.el
parente9dca2b5aa43116980321259682ad0c68fd0f937 (diff)
downloademacs-cb7b63d6e2da14eb92f8f535837fdae04c89dfb2.tar.gz
; * 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.
Diffstat (limited to 'lisp/so-long.el')
-rw-r--r--lisp/so-long.el4
1 files 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)