diff options
Diffstat (limited to 'sx-favorites.el')
-rw-r--r-- | sx-favorites.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-favorites.el b/sx-favorites.el index f5a8d6c..9412b5b 100644 --- a/sx-favorites.el +++ b/sx-favorites.el @@ -1,4 +1,4 @@ -;;; sx-site.el --- browsing sites -*- lexical-binding: t; -*- +;;; sx-favorites.el --- Starred questions -*- lexical-binding: t; -*- ;; Copyright (C) 2014 Sean Allred @@ -70,7 +70,7 @@ Writes list to cache QUESTION-FAVORITES." (site-cell (assoc site sx-favorites--user-favorite-list))) (if site-cell - (setcdr site-cell (mapcar 'cdar favs)) + (setcdr site-cell (mapcar #'cdar favs)) (push (cons site favs) sx-favorites--user-favorite-list)) (sx-cache-set 'question-favorites sx-favorites--user-favorite-list))) |