diff options
author | Sean Allred <code@seanallred.com> | 2014-11-27 14:23:14 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-27 14:23:14 -0500 |
commit | b3bfa272a9e27f0e87c0a815520221ef1dbf789f (patch) | |
tree | 54867a156b4557d472fd0fb0bbef681122c4d023 /sx-interaction.el | |
parent | de0f242552610ed2dcca537bd9843c4d798bfc8f (diff) | |
parent | b2623682e9ce5e12615f792cd63197c46db60e00 (diff) |
Merge pull request #116 from vermiculus/hotfix
Hotfixes
Diffstat (limited to 'sx-interaction.el')
-rw-r--r-- | sx-interaction.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sx-interaction.el b/sx-interaction.el index e4234b0..5f3ece6 100644 --- a/sx-interaction.el +++ b/sx-interaction.el @@ -180,8 +180,7 @@ ID is an integer." (defun sx--add-comment-to-object (comment object) "Add COMMENT to OBJECT's `comments' property. OBJECT can be a question or an answer." - (let ((com-cell (assoc 'comments object)) - (count-cell (assoc 'comment_count object))) + (let ((com-cell (assoc 'comments object))) (if com-cell (progn (setcdr |