From 7ca84717120848f0172c06b5f124a62753cdf5df Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Thu, 8 Jan 2015 15:49:20 -0200 Subject: Require sx-tag --- sx-compose.el | 1 + 1 file changed, 1 insertion(+) (limited to 'sx-compose.el') diff --git a/sx-compose.el b/sx-compose.el index 67c476e..f734904 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." -- cgit v1.2.3 From 72c00ea6a42f2a3f7c1bdb8a1f5c88446d263ae9 Mon Sep 17 00:00:00 2001 From: Sebastian Wiesner Date: Mon, 12 Jan 2015 19:50:47 +0100 Subject: Add missing format call `y-or-n-p` doesn't accept format arguments, so we need to call `format` explicitly. --- sx-compose.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sx-compose.el') 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)))) -- cgit v1.2.3