aboutsummaryrefslogtreecommitdiff
path: root/sx-interaction.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2015-03-02 23:06:27 -0300
committerArtur Malabarba <bruce.connor.am@gmail.com>2015-03-02 23:29:13 -0300
commitc00ed8c6bbd8e948a3142c71b3bbb3ab86c04959 (patch)
treea7286ee6271360597f95b7c5339ea660d2317932 /sx-interaction.el
parent6fb8fd50aa5a4e7486aa6a23ca50829960c13183 (diff)
Fix a few leftover vectors
Diffstat (limited to 'sx-interaction.el')
-rw-r--r--sx-interaction.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-interaction.el b/sx-interaction.el
index cd8b5a0..09fd270 100644
--- a/sx-interaction.el
+++ b/sx-interaction.el
@@ -376,7 +376,7 @@ OBJECT can be a question or an answer."
(list comment))))
;; No previous comments, add it manually.
(setcdr object (cons (car object) (cdr object)))
- (setcar object `(comments . [,comment]))))
+ (setcar object `(comments . (,comment)))))
object)
(defun sx--ensure-owner-in-object (owner object)
@@ -478,7 +478,7 @@ context at point. "
(setcdr cell (append (cdr cell) (list answer)))
;; No previous comments, add it manually.
(setcdr question (cons (car question) (cdr question)))
- (setcar question `(answers . [,answer])))
+ (setcar question `(answers . (,answer))))
question))
(provide 'sx-interaction)