diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-15 18:18:02 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-15 18:18:02 -0200 |
commit | e33d4bca3d610a77ef33f3c5dcaab7f7b4119900 (patch) | |
tree | c35e420baf1966d153568a25b0b3930f60273266 | |
parent | 6987b0424a209227956d2be8aaa84c1303fd25fd (diff) |
Unused variable
-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. |