From 6e494499441856471ea9d544fea949e0ecd58e5a Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Wed, 21 Aug 2024 18:39:08 -0400 Subject: [PATCH] fix(confpkg): fix improper format string --- config.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.org b/config.org index 51d74de..19b13e4 100644 --- a/config.org +++ b/config.org @@ -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;;:------------------------"