From a9a47da95ab06e3a68bfd037de51bead4855c1ea Mon Sep 17 00:00:00 2001 From: Jonathan Leech-Pepin Date: Tue, 18 Nov 2014 07:42:08 -0500 Subject: (sx-favorites--update-site-favorites): Change from (list ..) to (cons ..). --- sx-favorites.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () -- cgit v1.2.3