summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorMarco Wahl <marcowahlsoft@gmail.com>2021-12-21 12:13:46 +0100
committerMarco Wahl <marcowahlsoft@gmail.com>2021-12-21 12:13:46 +0100
commitbe03334a7e5dae4f04b52a1cd1614024d5473ceb (patch)
treee2c4a3089c73ce0d4386e6bfee9d8be738f7692d /mk
parent0b670aa8e8a9a8c539fb46e64be43ca8ec162398 (diff)
parentb6c5f028a061557e2edb64eef897cd4a28b2afeb (diff)
Merge branch 'bugfix' into main
Diffstat (limited to 'mk')
-rw-r--r--mk/org-fixup.el15
1 files changed, 15 insertions, 0 deletions
diff --git a/mk/org-fixup.el b/mk/org-fixup.el
index c0eef23cb..0e26cc7e7 100644
--- a/mk/org-fixup.el
+++ b/mk/org-fixup.el
@@ -27,6 +27,21 @@
(require 'autoload)
(require 'org-compat "org-compat.el")
+(defun org-make-manual ()
+ "Generate the Texinfo file out of the Org manual."
+ (require 'ox-texinfo)
+ (find-file "../doc/org-manual.org")
+ (org-texinfo-export-to-texinfo))
+
+(defun org-make-guide ()
+ "Generate the Texinfo file out of the Org guide."
+ (require 'ox-texinfo)
+ (find-file "../doc/org-guide.org")
+ (org-texinfo-export-to-texinfo))
+
+(make-obsolete 'org-make-manuals
+ "use org-make-manual and org-make-guide."
+ "9.6")
(defun org-make-manuals ()
"Generate the Texinfo files out of Org manuals."
(require 'ox-texinfo)