diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-12 19:07:49 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-12 19:07:49 -0200 |
commit | 128ec0191ea586f94dfe9b905b29205f6285d50a (patch) | |
tree | 2da98927f51618797b2c67550c0e6840defaf93d | |
parent | 14f219c69039b681adbb0312973ae481b96a980e (diff) | |
parent | 72c00ea6a42f2a3f7c1bdb8a1f5c88446d263ae9 (diff) |
Merge pull request #224 from lunaryorn/patch-1
Add missing format call
-rw-r--r-- | sx-compose.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-compose.el b/sx-compose.el index f734904..3047a97 100644 --- a/sx-compose.el +++ b/sx-compose.el @@ -200,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)))) |