diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-06 08:53:24 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-06 08:53:24 +0000 |
commit | bd1937c21db3f62c4f04e72a1322fcd711f724a4 (patch) | |
tree | ef439bb10cd0db2c29e4c59fdb404f3a14947835 /stack-question-list.el | |
parent | 1a780c0d887ec3933a0c9192a0b3c045be855a66 (diff) |
Switch to live-data in the question list.
Diffstat (limited to 'stack-question-list.el')
-rw-r--r-- | stack-question-list.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stack-question-list.el b/stack-question-list.el index f565490..7053339 100644 --- a/stack-question-list.el +++ b/stack-question-list.el @@ -25,7 +25,6 @@ (require 'stack-question) (require 'tabulated-list) (require 'cl-lib) -(load "test/tests.el") ;;; Customization @@ -144,7 +143,7 @@ Letters do not insert themselves; instead, they are commands. If REDISPLAY is non-nil, also call `tabulated-list-print'." (interactive '(t)) ;; Obviously this needs to be changed. - (let ((question-list (stack-test-sample-data "questions" "test"))) + (let ((question-list (stack-core-make-request "questions"))) ;; Print the result. (setq tabulated-list-entries (mapcar #'stack-question-list--print-info question-list))) |