branch: externals/denote
commit 85e33cb5239534fe16655cc37d1397a63c7bf18d
Author: Protesilaos Stavrou <i...@protesilaos.com>
Commit: Protesilaos Stavrou <i...@protesilaos.com>

    Remove needless single quotes
---
 denote.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/denote.el b/denote.el
index e22d2c4395..cd34adfa87 100644
--- a/denote.el
+++ b/denote.el
@@ -339,7 +339,7 @@ include the starting dot or the return value of
 (defun denote--map-quote-downcase (seq)
   "Quote and downcase elements in SEQ."
   (mapconcat (lambda (k)
-               (format "'%s'" (downcase k)))
+               (format "%S" (downcase k)))
              seq ", "))
 
 (defun denote--file-meta-keywords (keywords &optional type)

Reply via email to