]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/so-long.el (so-long-predicate): Custom type consistency
authorPhil Sainty <psainty@orcon.net.nz>
Mon, 21 Oct 2019 10:57:55 +0000 (23:57 +1300)
committerPhil Sainty <psainty@orcon.net.nz>
Thu, 14 Nov 2019 11:39:13 +0000 (00:39 +1300)
This is for consistency with the other function options, which all
used the 'radio' custom type.

lisp/so-long.el

index f7dfc8a79ca83fe896ca3eace3f9e79c37eb5e12..e76ab791fcd460abc1867e416909cd0e06b4a610 100644 (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)