fix(confpkg): fix improper format string

This commit is contained in:
Kiana Sheibani 2024-08-21 18:39:08 -04:00
parent 3e46106e90
commit 6e49449944
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -303,7 +303,7 @@ If you're reading the raw org file instead of the published version, the code fo
(match-end 0))))
((eq 'require (plist-get confpkg :via))
(insert (format "(require '%s)\n" (plist-get confpkg :package))))
(t (insert (format "(warn \"%s confpkg :via has unrecognised value: %S\" %S %S)"
(t (insert (format "(warn \"%%s confpkg :via has unrecognised value: %%S\" %S %S)"
(plist-get confpkg :name) (plist-get confpkg :via)))))
(goto-char (point-min))
(insert "\n;;:------------------------"