diff options
author | Sean Allred <code@seanallred.com> | 2014-11-11 12:12:30 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-11 12:12:30 -0500 |
commit | f6699988fd521703c1d44489e3d89c6f71d418df (patch) | |
tree | fb47c358eb81ac72a98b176779155d25d080a2e9 /sx-question-list.el | |
parent | 6167df68eba9e8f69f285d47454afdce3ac94168 (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.el | 2 |
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) #'>)) |