diff options
author | Jonathan Leech-Pepin <jonathan.leechpepin@gmail.com> | 2014-11-18 07:42:08 -0500 |
---|---|---|
committer | Jonathan Leech-Pepin <jonathan.leechpepin@gmail.com> | 2014-11-18 07:42:08 -0500 |
commit | a9a47da95ab06e3a68bfd037de51bead4855c1ea (patch) | |
tree | 7391c8829870f4cc779a68ef8ce098ace34e7ae7 | |
parent | f813286cf44b8e1bdf7d2003f7f5b1fe870f613d (diff) |
(sx-favorites--update-site-favorites): Change from (list ..) to (cons ..).
-rw-r--r-- | sx-favorites.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-favorites.el b/sx-favorites.el index 497ef1a..f5a8d6c 100644 --- a/sx-favorites.el +++ b/sx-favorites.el @@ -71,7 +71,7 @@ Writes list to cache QUESTION-FAVORITES." sx-favorites--user-favorite-list))) (if site-cell (setcdr site-cell (mapcar 'cdar favs)) - (push (list site favs) sx-favorites--user-favorite-list)) + (push (cons site favs) sx-favorites--user-favorite-list)) (sx-cache-set 'question-favorites sx-favorites--user-favorite-list))) (defun sx-favorites-update () |