diff options
author | Sean Allred <code@seanallred.com> | 2014-10-31 00:06:20 -0400 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-10-31 00:06:20 -0400 |
commit | c126f042a5d8599730dc081a0d17104a3f603891 (patch) | |
tree | b25207221ca1d2bfb8b257ab7d0c33630c1651c6 | |
parent | a38b35b0e70a13288823988e4572406dc1c93a05 (diff) |
Formatting changes
-rw-r--r-- | stack-filter.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/stack-filter.el b/stack-filter.el index a406054..1525a4b 100644 --- a/stack-filter.el +++ b/stack-filter.el @@ -32,7 +32,7 @@ ;;; Customizations -(defcustom stack-filter +(defvar stack-filter 'default "The current filter. To customize the filter for the next call to `stack-core-make-request', let-bind this variable to the @@ -58,9 +58,12 @@ or string." #'stack-core-thing-as-string exclude ";"))) (base . ,(if base base))))) - (let ((response (stack-core-make-request "filter/create" keyword-arguments))) + (let ((response (stack-core-make-request + "filter/create" + keyword-arguments))) (url-hexify-string - (cdr (assoc 'filter (elt (cdr (assoc 'items response)) 0))))))) + (cdr (assoc 'filter + (elt response 0))))))) (provide 'stack-filter) ;;; stack-filter.el ends here |