diff options
author | Sean Allred <code@seanallred.com> | 2014-12-15 16:33:29 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-12-15 16:33:29 -0500 |
commit | 3e332ab028d1b15b1a255411206368e53b372ff9 (patch) | |
tree | 67d12328b8f93d1147872f89af9645979d4ee425 /sx-question.el | |
parent | 203402f10a7bce27b30d19aa71b96dad9a0e6b3c (diff) | |
parent | 0a2f984d0771b9a921696af1fe3bad10cdbb7b54 (diff) |
Merge pull request #158 from vermiculus/fix-some-warnings
Fix some warnings
Diffstat (limited to 'sx-question.el')
-rw-r--r-- | sx-question.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sx-question.el b/sx-question.el index 0f6d17f..9fb31fc 100644 --- a/sx-question.el +++ b/sx-question.el @@ -142,8 +142,7 @@ If no cache exists for it, initialize one with SITE." (defun sx-question--mark-hidden (question) "Mark QUESTION as being hidden." (sx-assoc-let question - (let ((site-cell (assoc .site sx-question--user-hidden-list)) - cell) + (let ((site-cell (assoc .site sx-question--user-hidden-list))) ;; If question already hidden, do nothing. (unless (memq .question_id site-cell) ;; First question from this site. |