aboutsummaryrefslogtreecommitdiff
path: root/sx-question-list.el
diff options
context:
space:
mode:
authorSean Allred <code@seanallred.com>2014-11-11 12:12:30 -0500
committerSean Allred <code@seanallred.com>2014-11-11 12:12:30 -0500
commitf6699988fd521703c1d44489e3d89c6f71d418df (patch)
treefb47c358eb81ac72a98b176779155d25d080a2e9 /sx-question-list.el
parent6167df68eba9e8f69f285d47454afdce3ac94168 (diff)
Move question sorting function to sx.el
It is not specific to questions -- it is generally applicable to any alist.
Diffstat (limited to 'sx-question-list.el')
-rw-r--r--sx-question-list.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-question-list.el b/sx-question-list.el
index caf24b1..a164706 100644
--- a/sx-question-list.el
+++ b/sx-question-list.el
@@ -120,7 +120,7 @@ Letters do not insert themselves; instead, they are commands.
(defun sx-question-list--date-more-recent-p (x y)
"Non-nil if tabulated-entry X is newer than Y."
- (sx-question--<
+ (sx--<
sx-question-list-date-sort-method
(car x) (car y) #'>))