From 9d25ec4fc66fccbae23489abd4b9e8933c5b7dbd Mon Sep 17 00:00:00 2001 From: "Jakob L. Kreuze" Date: Sat, 20 Jul 2019 19:51:34 -0400 Subject: [PATCH] Prefer 'substring' to 'cl-subseq' --- ox-haunt.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ox-haunt.el b/ox-haunt.el index c18b370..f23a16d 100644 --- a/ox-haunt.el +++ b/ox-haunt.el @@ -96,7 +96,7 @@ INFO is the current state of the export process, as a plist." (dolist (keyword ox-haunt-recognized-metadata) (when (plist-get info keyword) (insert (format "%s: %s\n" - (subseq (symbol-name keyword) 1) + (substring (symbol-name keyword) 1) (ox-haunt--keyword-as-string info keyword))))) (buffer-string)) "---\n" -- 2.34.2