diff options
author | Sean Allred <code@seanallred.com> | 2015-01-16 00:40:26 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2015-01-16 00:41:20 -0500 |
commit | b9eab6419e514fc6e1ce3096892bccd8a8ffb121 (patch) | |
tree | d3bc1d7a5d711a826a1edc6c8bc6656354bba4dc /sx-question-list.el | |
parent | 67f1cd1dc24560a21eef8186590020d26d9e55d7 (diff) |
Use assq instead of assoc
Diffstat (limited to 'sx-question-list.el')
-rw-r--r-- | sx-question-list.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sx-question-list.el b/sx-question-list.el index cb5bc33..41bebda 100644 --- a/sx-question-list.el +++ b/sx-question-list.el @@ -325,8 +325,7 @@ 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))))) + (cdr (assq sx-question-list-date-sort-method (car x))))) ;;; Keybinds |