aboutsummaryrefslogtreecommitdiff
path: root/modules/org-export-config.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-24 14:36:43 -0500
committerCraig Jennings <c@cjennings.net>2026-05-24 14:36:43 -0500
commit94ef5242e72a39faa9eb14a705387ccad339be14 (patch)
tree81653f77b931aa0035b152240cc8f7a4d6f8c282 /modules/org-export-config.el
parentad173a77fbbe2e9ffb178b8765d0a3cc6b972aac (diff)
downloaddotemacs-94ef5242e72a39faa9eb14a705387ccad339be14.tar.gz
dotemacs-94ef5242e72a39faa9eb14a705387ccad339be14.zip
fix(org-export): remove contradictory org-export-with-tasks default
org-export-config.el set org-export-with-tasks twice in a row — first to ("TODO"), then to nil. The final value won (export no tasks), but the stale first assignment and its "export with tasks by default" comment contradicted it, so the intended policy was ambiguous on a read. Removed the leftover ("TODO") line. nil is the deliberate default: it is the value that was already winning, its comment matches, and it sits with the adjacent "export without tags / section numbers by default" settings. Added a smoke test that fires the deferred ox :config and pins org-export-with-tasks to nil so a future flip is caught.
Diffstat (limited to 'modules/org-export-config.el')
-rw-r--r--modules/org-export-config.el1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/org-export-config.el b/modules/org-export-config.el
index 688d8f99..0cf0af15 100644
--- a/modules/org-export-config.el
+++ b/modules/org-export-config.el
@@ -46,7 +46,6 @@
(setq org-export-headline-levels 6) ;; export headlines 6 levels deep
(setq org-export-with-section-numbers nil) ;; export without section numbers by default
(setq org-export-with-tags nil) ;; export without tags by default
- (setq org-export-with-tasks '("TODO")) ;; export with tasks by default
(setq org-export-with-tasks nil) ;; export WITHOUT tasks by default
(setq org-export-with-toc t) ;; export WITH table of contents by default
(setq org-export-initial-scope 'buffer) ;; 'subtree is your other choice