diff options
author | Sean Allred <code@seanallred.com> | 2014-11-18 21:54:34 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-18 21:54:34 -0500 |
commit | 11b698a4c750c379a8c0d4d843744913e931d3fe (patch) | |
tree | 761861c1c6e0a40f47d25521686c4e78fa276eb7 | |
parent | 2d44aaa67c3d462debd35ce7b814f4d78e08fe29 (diff) |
Simplify `sx-method-call'
We aren't using `stack-filter' anymore (in fact, we haven't since
filters became functional). Somehow it survived refactoring; this
commit fixes that oversight.
-rw-r--r-- | sx-method.el | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sx-method.el b/sx-method.el index bd91e38..9a6dcc5 100644 --- a/sx-method.el +++ b/sx-method.el @@ -38,12 +38,8 @@ Return the response content as a complex alist. See `sx-request-make' and `sx-filter-get-var'." - (sx-request-make - method - (cons (cons 'filter - (sx-filter-get-var - (cond (filter filter) - ((boundp 'stack-filter) stack-filter)))) + (sx-request-make method + (cons (cons 'filter (sx-filter-get-var filter)) keyword-arguments))) (provide 'sx-method) |