diff options
author | Sean Allred <code@seanallred.com> | 2015-01-15 00:22:04 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2015-01-15 00:22:04 -0500 |
commit | 9b093f7a7a02e31dc6985619f5277ee945f6f90d (patch) | |
tree | 4c4a03f4757bcc1b885450b9e819c96f684ef57c /sx-question-list.el | |
parent | 8e9983d1c9edab01335e3923bb5b50ad5a91ed1f (diff) |
Small bugfix
Everything must now be a proper function.
Diffstat (limited to 'sx-question-list.el')
-rw-r--r-- | sx-question-list.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sx-question-list.el b/sx-question-list.el index 5909156..cb5bc33 100644 --- a/sx-question-list.el +++ b/sx-question-list.el @@ -324,9 +324,9 @@ into consideration. (sx--create-comparator sx-question-list--date-more-recent-p "Non-nil if tabulated-entry A is newer than B." - > (lambda (x) - (cdr (assoc sx-question-list-date-sort-method - (car x))))) + #'> (lambda (x) + (cdr (assoc sx-question-list-date-sort-method + (car x))))) ;;; Keybinds |