summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2021-01-01 10:57:48 -0600
committerCase Duckworth2021-01-01 10:57:48 -0600
commit70fb602e79aa54f728e24fe8838ab1de21715734 (patch)
tree7fdb9da397d0846df2f9cce6f5f3549c72eeedb7 /config.org
parentChange org-return-dwim function (diff)
downloademacs-70fb602e79aa54f728e24fe8838ab1de21715734.tar.gz
emacs-70fb602e79aa54f728e24fe8838ab1de21715734.zip
Fix messages syntax
Diffstat (limited to 'config.org')
-rw-r--r--config.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.org b/config.org index 0435dc9..3069841 100644 --- a/config.org +++ b/config.org
@@ -1263,7 +1263,7 @@ I realized I didn’t need =early-init.el=, since it really only set =load-prefe
1263 (when (file-newer-than-file-p config (expand-file-name 1263 (when (file-newer-than-file-p config (expand-file-name
1264 "README.md" 1264 "README.md"
1265 user-emacs-directory)) 1265 user-emacs-directory))
1266 (message "Exporting README.md...") 1266 (message "%s" "Exporting README.md...")
1267 (require 'ox-md) 1267 (require 'ox-md)
1268 (with-demoted-errors "Problem exporting README.md: %S" 1268 (with-demoted-errors "Problem exporting README.md: %S"
1269 (org-md-export-to-markdown))) 1269 (org-md-export-to-markdown)))
@@ -1271,11 +1271,11 @@ I realized I didn’t need =early-init.el=, since it really only set =load-prefe
1271 (when (file-newer-than-file-p config (expand-file-name 1271 (when (file-newer-than-file-p config (expand-file-name
1272 "config.el" 1272 "config.el"
1273 user-emacs-directory)) 1273 user-emacs-directory))
1274 (message "Tangling config.org...") 1274 (message "%s" "Tangling config.org...")
1275 (require 'org) 1275 (require 'org)
1276 (let ((inits (org-babel-tangle))) 1276 (let ((inits (org-babel-tangle)))
1277 ;; byte-compile resulting files 1277 ;; byte-compile resulting files
1278 (message "Byte-compiling...") 1278 (message "%s" "Byte-compiling...")
1279 (dolist (f inits) 1279 (dolist (f inits)
1280 (when (string-match "\\.el\\'" f) 1280 (when (string-match "\\.el\\'" f)
1281 (byte-compile-file f (not disable-load))))))))))) 1281 (byte-compile-file f (not disable-load)))))))))))