diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-07-20 19:51:34 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.lonestar.org> | 2019-07-20 19:52:06 -0400 |
| commit | 9d25ec4fc66fccbae23489abd4b9e8933c5b7dbd (patch) | |
| tree | 2fbd23b53207e72b53263e51ddf57e213921b760 /ox-haunt.el | |
| parent | 5aa4de8eff0b387e9583eb31d1d311e1c95dc146 (diff) | |
Prefer 'substring' to 'cl-subseq'v0.1
Diffstat (limited to 'ox-haunt.el')
| -rw-r--r-- | ox-haunt.el | 2 |
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" |