projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9dca2b
)
; * lisp/so-long.el (so-long-predicate): Custom type consistency
author
Phil Sainty
<psainty@orcon.net.nz>
Mon, 21 Oct 2019 10:57:55 +0000
(23:57 +1300)
committer
Phil 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
patch
|
blob
|
history
diff --git
a/lisp/so-long.el
b/lisp/so-long.el
index f7dfc8a79ca83fe896ca3eace3f9e79c37eb5e12..e76ab791fcd460abc1867e416909cd0e06b4a610 100644
(file)
--- 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)