diff options
author | Sean Allred <code@seanallred.com> | 2014-10-31 00:05:38 -0400 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-10-31 00:05:38 -0400 |
commit | 51eef5a1b8bebaf699a92ac4af15c37cc76db1d2 (patch) | |
tree | fef9896c9bc6f2d01bee676314a4fff5a41aa430 /stack-core.el | |
parent | c41fcf7834b5bd766991e55d3e7b72571d17eca3 (diff) |
Change *-make-request to return the content only
Diffstat (limited to 'stack-core.el')
-rw-r--r-- | stack-core.el | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/stack-core.el b/stack-core.el index a915352..7b86de1 100644 --- a/stack-core.el +++ b/stack-core.el @@ -173,11 +173,7 @@ entire response as a complex alist." stack-core-remaining-api-requests-message-threshold) (stack-message "%d API requests remaining" stack-core-remaining-api-requests)) - response)) + (cdr (assoc 'items response)))) (provide 'stack-core) ;;; stack-core.el ends here - -;; Local Variables: -;; fill-column: 72 -;; End: |