diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-04 13:47:44 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-04 13:47:44 +0000 |
commit | 6afdb3c647bcec08e4409ed1299ae3ca9f559d0c (patch) | |
tree | b8ee419d9d68c7c8786c0fdc10cba0ac9a44445d | |
parent | 96be4647af62f9dd6e85a6f9025527f5f69a6a22 (diff) |
Fix reference to old function.
-rw-r--r-- | stack-question-list.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stack-question-list.el b/stack-question-list.el index 2e354d3..fae4df4 100644 --- a/stack-question-list.el +++ b/stack-question-list.el @@ -121,7 +121,7 @@ Letters do not insert themselves; instead, they are commands. (defun stack-question-list--date-more-recent-p (x y) "Non-nil if tabulated-entry X is newer than Y." - (stack-question-list--< + (stack-question--< stack-question-list-date-sort-method (car x) (car y) #'>)) |