diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-03-02 23:06:27 -0300 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-03-02 23:29:13 -0300 |
commit | c00ed8c6bbd8e948a3142c71b3bbb3ab86c04959 (patch) | |
tree | a7286ee6271360597f95b7c5339ea660d2317932 /sx-interaction.el | |
parent | 6fb8fd50aa5a4e7486aa6a23ca50829960c13183 (diff) |
Fix a few leftover vectors
Diffstat (limited to 'sx-interaction.el')
-rw-r--r-- | sx-interaction.el | 4 |
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) |