summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob L. Kreuze <zerodaysfordays@sdf.lonestar.org>2019-07-20 19:51:34 -0400
committerJakob L. Kreuze <zerodaysfordays@sdf.lonestar.org>2019-07-20 19:52:06 -0400
commit9d25ec4fc66fccbae23489abd4b9e8933c5b7dbd (patch)
tree2fbd23b53207e72b53263e51ddf57e213921b760
parent5aa4de8eff0b387e9583eb31d1d311e1c95dc146 (diff)
Prefer 'substring' to 'cl-subseq'v0.1
-rw-r--r--ox-haunt.el2
1 files changed, 1 insertions, 1 deletions
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"