diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-14 16:43:42 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-14 16:43:42 -0200 |
commit | 1845ab03a3083088b621108040fc1aa89a6d7f85 (patch) | |
tree | c1ed6bf1270e3657cd031da029b95f6ed1d9c4fb /sx-compose.el | |
parent | 461a0b63529f0185f1bbe86cb07e7f6cd88d2ef7 (diff) | |
parent | 7d6583a6da023f0a1f243d01cb2d856e272fc625 (diff) |
Merge remote-tracking branch 'refs/remotes/origin/master' into improve-comments
Diffstat (limited to 'sx-compose.el')
-rw-r--r-- | sx-compose.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sx-compose.el b/sx-compose.el index 67c476e..3047a97 100644 --- a/sx-compose.el +++ b/sx-compose.el @@ -34,6 +34,7 @@ (require 'markdown-mode) (require 'sx) +(require 'sx-tag) (defgroup sx-compose-mode nil "Customization group for sx-compose-mode." @@ -199,7 +200,7 @@ tags. Return a list of already inserted tags." (if invalid-tags ;; If the user doesn't want to create the tags, we return ;; nil and sending is aborted. - (y-or-n-p "Following tags don't exist. Create them? %s " invalid-tags) + (y-or-n-p (format "Following tags don't exist. Create them? %s " invalid-tags)) t)))) |