diff options
author | Jonathan Leech-Pepin <jonathan.leechpepin@gmail.com> | 2014-11-18 08:50:22 -0500 |
---|---|---|
committer | Jonathan Leech-Pepin <jonathan.leechpepin@gmail.com> | 2014-11-18 08:50:22 -0500 |
commit | 876ab80a8b62214bb608716241c525ffc2ea0cf3 (patch) | |
tree | 6f7493eadb16879bed4de6fd25b9d8ac1dff08e1 | |
parent | 16637550bff638552613aa241a023ad24e757a09 (diff) |
GH comment fix:
Use sharp quote for function.
-rw-r--r-- | sx-networks.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-networks.el b/sx-networks.el index ead4d6d..315daba 100644 --- a/sx-networks.el +++ b/sx-networks.el @@ -92,7 +92,7 @@ list of sites the user is active on." (sx-site--get-site-list)))) (mapcar (lambda (loc) (let ((u-site (cdr (assoc 'site_url loc)))) - (when (member u-site (mapcar 'car sites-info)) + (when (member u-site (mapcar #'car sites-info)) (cdr (assoc u-site sites-info))))) sx-network--user-information))) |