aboutsummaryrefslogtreecommitdiff
path: root/sx-interaction.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2014-11-26 09:29:36 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2014-11-26 09:29:36 +0000
commit0d73114ea7e7a1aa9cf1e391951a9522e129492d (patch)
tree0e103f277a547713363162b6c383614ae5a2b93c /sx-interaction.el
parent07a1456fe7a91d1589f689d40ac4391f35e695b9 (diff)
parenteb6d7c4567313b5b4a729bd56f53c56ed2cad27c (diff)
Merge pull request #98 from vermiculus/fix-at-mention-string
Fix at-mention string
Diffstat (limited to 'sx-interaction.el')
-rw-r--r--sx-interaction.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-interaction.el b/sx-interaction.el
index 404fb56..de27ca5 100644
--- a/sx-interaction.el
+++ b/sx-interaction.el
@@ -123,7 +123,7 @@ TEXT is a string. Interactively, it is read from the minibufer."
(setq text (read-string
"Comment text: "
(when .comment_id
- (sx--user-@name .owner))))
+ (concat (sx--user-@name .owner) " "))))
(while (< (string-width text) 15)
(setq text (read-string "Comment text (at least 15 characters): " text))))
;; If non-interactive, `text' could be anything.