diff options
author | Jonathan Leech-Pepin <jonathan.leechpepin@gmail.com> | 2014-11-18 08:49:03 -0500 |
---|---|---|
committer | Jonathan Leech-Pepin <jonathan.leechpepin@gmail.com> | 2014-11-18 08:49:03 -0500 |
commit | 16637550bff638552613aa241a023ad24e757a09 (patch) | |
tree | 625a1ff61bb5c7b46feb1c4a21163ee20739c72c | |
parent | a9a47da95ab06e3a68bfd037de51bead4855c1ea (diff) |
GH comment fixes:
Correct file header.
Use sharp quote for function.
-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))) |