diff options
author | Sean Allred <code@seanallred.com> | 2014-11-08 15:49:17 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-08 15:49:17 -0500 |
commit | 6aa21b85ace92b01676c6da66372b409fe639920 (patch) | |
tree | fb536980c22a701ecabcdc8444504b1cae502d3c /sx-filter.el | |
parent | 7c5cc6faf61f58cd1534dcab2c4dbb667c00476d (diff) |
Abstract out method calls
Keeping method calls within `sx-request.el' was causing circular
requirements.
This commit sorts through all of the requirements for each of the files
and ensures that this does not happen. Much of the content removed was
for `sx-request-default-keyword-arguments-alist' and related items. It
was unused, so it was pruned. If it is deemed necessary in the future,
it should be included in `sx-method.el'.
Diffstat (limited to 'sx-filter.el')
-rw-r--r-- | sx-filter.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-filter.el b/sx-filter.el index 0ba8186..4ed3dbe 100644 --- a/sx-filter.el +++ b/sx-filter.el @@ -28,6 +28,7 @@ (require 'sx) (require 'sx-cache) +(require 'sx-request) ;;; Customizations @@ -53,8 +54,7 @@ or string." "filter/create" keyword-arguments))) (url-hexify-string - (cdr (assoc 'filter - (elt response 0))))))) + (cdr (assoc 'filter (elt response 0))))))) ;;; Storage and Retrieval |