diff options
author | Artur Malabarba <Malabarba@users.noreply.github.com> | 2015-04-06 20:35:45 +0100 |
---|---|---|
committer | Artur Malabarba <Malabarba@users.noreply.github.com> | 2015-04-06 20:35:45 +0100 |
commit | e78510b2d4fd0efe9da9bbe1daa2c7e3d54984d9 (patch) | |
tree | a77f76bedf059304be80d517f25b91adb2428ac1 /sx-question-list.el | |
parent | 517dfb1d5ee199ede3ebdafe2654be33e4798571 (diff) | |
parent | 010bcf7ec726d588aa6cb59955ea1cd363a60935 (diff) |
Merge pull request #269 from vermiculus/json-false
Json false
Diffstat (limited to 'sx-question-list.el')
-rw-r--r-- | sx-question-list.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sx-question-list.el b/sx-question-list.el index f8f8fc6..8d06cd0 100644 --- a/sx-question-list.el +++ b/sx-question-list.el @@ -567,9 +567,8 @@ we're not. Do the same for 3 lines from the top." (when (functionp sx-question-list--next-page-function) ;; Try to get more questions (let ((list - (cl-map 'list #'identity - (funcall sx-question-list--next-page-function - (1+ sx-question-list--pages-so-far))))) + (funcall sx-question-list--next-page-function + (1+ sx-question-list--pages-so-far)))) (if (null list) (message "No further questions.") ;; If it worked, increment the variable. |