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-question.el | |
parent | c41fcf7834b5bd766991e55d3e7b72571d17eca3 (diff) |
Change *-make-request to return the content only
Diffstat (limited to 'stack-question.el')
-rw-r--r-- | stack-question.el | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/stack-question.el b/stack-question.el index 13cc5e8..3902a39 100644 --- a/stack-question.el +++ b/stack-question.el @@ -33,12 +33,11 @@ (defun stack-question-get-questions (site &optional page) "Get the page PAGE of questions from SITE." - (cdr (assoc 'items - (stack-core-make-request - "questions" - `((site . ,site) - (page . ,page)) - stack-question-browse-filter)))) + (stack-core-make-request + "questions" + `((site . ,site) + (page . ,page)) + stack-question-browse-filter)) (provide 'stack-question) ;;; stack-question.el ends here |