diff options
Diffstat (limited to 'stack-filter.el')
-rw-r--r-- | stack-filter.el | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/stack-filter.el b/stack-filter.el index 1525a4b..75173a1 100644 --- a/stack-filter.el +++ b/stack-filter.el @@ -51,19 +51,20 @@ excluding those from EXCLUDE, using BASE as a base filter. INCLUDE and EXCLUDE must both be lists; BASE should be a symbol or string." (let ((keyword-arguments - `((include . ,(if include (mapconcat - #'stack-core-thing-as-string - include ";"))) - (exclude . ,(if exclude (mapconcat - #'stack-core-thing-as-string - exclude ";"))) - (base . ,(if base base))))) + `((include . ,(if include (mapconcat + #'stack-core-thing-as-string + include ";"))) + (exclude . ,(if exclude (mapconcat + #'stack-core-thing-as-string + exclude ";"))) + (base . ,(if base base))))) (let ((response (stack-core-make-request - "filter/create" - keyword-arguments))) + "filter/create" + keyword-arguments))) (url-hexify-string (cdr (assoc 'filter - (elt response 0))))))) + (elt response 0))))))) + (provide 'stack-filter) ;;; stack-filter.el ends here |