monnier pushed a commit to branch master
in repository elpa.
commit 6fbce1a0f8f7480da3306f829d284ef62ce753c3
Author: Teemu Likonen <[email protected]>
Date: Wed Jun 29 10:05:31 2011 +0300
The "args" option can no longer be a string
The "args" option has been a quite long time now a list of strings but
strings were still allowed for backward-compatibility. Now there are
other areas in the code which necessarily break the
backward-compatibility it's perhaps a good time to discontinue
maintaining backward-compatibility in this option too.
---
wcheck-mode.el | 9 ---------
1 files changed, 0 insertions(+), 9 deletions(-)
diff --git a/wcheck-mode.el b/wcheck-mode.el
index 5598faf..55c2cd6 100644
--- a/wcheck-mode.el
+++ b/wcheck-mode.el
@@ -88,15 +88,6 @@
(cons :tag "Arguments" :format "%v"
(const :format "" args)
(repeat :tag "Arguments"
- :value-to-internal
- (lambda (widget value)
- (cond ((stringp value)
- (split-string-and-unquote value "[ \t\n]+"))
- ((listp value)
- value)))
- :match (lambda (widget value)
- (or (listp value)
- (stringp value)))
(string :format "%v")))
(cons :tag "Output parser function" :format "%v"