diff options
author | Sean Allred <code@seanallred.com> | 2015-01-16 08:54:13 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2015-01-16 08:55:03 -0500 |
commit | 389e433953bba4003b102748dbbf5f8a9b421a51 (patch) | |
tree | 89dd32dc6c4bc73647d80fc3342ba8930d996c58 | |
parent | a1fc7125f9260411af04c21137ef1e53a5b1b634 (diff) |
Hotfix: wrong variable name
Fix #234
-rw-r--r-- | sx-question-print.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-question-print.el b/sx-question-print.el index a25ff52..f9ecfab 100644 --- a/sx-question-print.el +++ b/sx-question-print.el @@ -176,7 +176,7 @@ QUESTION must be a data structure returned by `json-read'." (sx-question-mode--print-section question) (sx-assoc-let question (mapc #'sx-question-mode--print-section - (cl-sort .answers sx-question-list--sort-answer-function))) + (cl-sort .answers sx-question-mode-answer-sort-function))) (insert "\n\n ") (insert-text-button "Write an Answer" :type 'sx-button-answer) ;; Go up |