aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorGlenn Morris2021-02-26 19:32:38 -0800
committerGlenn Morris2021-02-26 19:48:34 -0800
commitb3d310fa9694807fc0e9c54f7ec4f6e3407402e1 (patch)
tree2c5fedbf09fa710db45dff1850b61b06777818bb /doc/misc
parentfddd63f8b854f6bfa91403f69ba694ccb54197bc (diff)
downloademacs-b3d310fa9694807fc0e9c54f7ec4f6e3407402e1.tar.gz
emacs-b3d310fa9694807fc0e9c54f7ec4f6e3407402e1.zip
Fixes for doc/misc org source files
* doc/misc/org-setup.org: Fix "version" file lookup. Add copyright. * doc/misc/modus-themes.org: Fix up doclicense include. * doc/misc/org.org: Remove non-working and unused "modification-time". Fix up doclicense include. Adjust setupfile inclusion.
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/modus-themes.org4
-rw-r--r--doc/misc/org-setup.org21
-rw-r--r--doc/misc/org.org7
3 files changed, 24 insertions, 8 deletions
diff --git a/doc/misc/modus-themes.org b/doc/misc/modus-themes.org
index db15db46b5e..03cce5bf335 100644
--- a/doc/misc/modus-themes.org
+++ b/doc/misc/modus-themes.org
@@ -17,7 +17,7 @@ released on {{{release-date}}}. Any reference to a newer feature which does
17not yet form part of the latest tagged commit, is explicitly marked as 17not yet form part of the latest tagged commit, is explicitly marked as
18such. 18such.
19 19
20Copyright (C) 2020 Free Software Foundation, Inc. 20Copyright (C) 2020--2021 Free Software Foundation, Inc.
21 21
22#+begin_quote 22#+begin_quote
23Permission is granted to copy, distribute and/or modify this 23Permission is granted to copy, distribute and/or modify this
@@ -1952,4 +1952,4 @@ to produce such a port, feel welcome [[https://protesilaos.com/contact][to conta
1952:CUSTOM_ID: h:3077c3d2-7f90-4228-8f0a-73124f4026f6 1952:CUSTOM_ID: h:3077c3d2-7f90-4228-8f0a-73124f4026f6
1953:END: 1953:END:
1954 1954
1955#+INCLUDE: fdl-1.3.txt src txt 1955#+texinfo: @include doclicense.texi
diff --git a/doc/misc/org-setup.org b/doc/misc/org-setup.org
index b83d16e7e58..d0392f10a20 100644
--- a/doc/misc/org-setup.org
+++ b/doc/misc/org-setup.org
@@ -1,4 +1,21 @@
1# SETUPFILE for manuals 1# SETUPFILE for Org manual
2
3# Copyright (C) 2021 Free Software Foundation, Inc.
4#
5# This file is part of GNU Emacs.
6#
7# GNU Emacs is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
12# GNU Emacs is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
2 19
3# XXX: We cannot use TODO keyword as a node starts with "TODO". 20# XXX: We cannot use TODO keyword as a node starts with "TODO".
4#+todo: REVIEW FIXME | DONE 21#+todo: REVIEW FIXME | DONE
@@ -28,7 +45,7 @@
28# returns major.minor version number. This is sufficient since bugfix 45# returns major.minor version number. This is sufficient since bugfix
29# releases are not expected to add features and therefore imply manual 46# releases are not expected to add features and therefore imply manual
30# modifications. 47# modifications.
31#+macro: version (eval (with-current-buffer (find-file-noselect "../lisp/org.el") (org-with-point-at 1 (if (re-search-forward "Version: +\\([0-9.]+\\)" nil t) (mapconcat #'identity (cl-subseq (split-string (match-string-no-properties 1) "\\.") 0 2) ".") (error "Missing \"Version\" keyword in \"org.el\""))))) 48#+macro: version (eval (with-current-buffer (find-file-noselect "../../lisp/org/org.el") (org-with-point-at 1 (if (re-search-forward "Version: +\\([0-9.]+\\)" nil t) (mapconcat #'identity (cl-subseq (split-string (match-string-no-properties 1) "\\.") 0 2) ".") (error "Missing \"Version\" keyword in \"org.el\"")))))
32 49
33# The "kbd" macro turns KBD into @kbd{KBD}. Additionally, it 50# The "kbd" macro turns KBD into @kbd{KBD}. Additionally, it
34# encloses case-sensitive special keys (SPC, RET...) within @key{...}. 51# encloses case-sensitive special keys (SPC, RET...) within @key{...}.
diff --git a/doc/misc/org.org b/doc/misc/org.org
index 5d4e3f26fa5..f072b5e00e0 100644
--- a/doc/misc/org.org
+++ b/doc/misc/org.org
@@ -1,7 +1,6 @@
1#+title: The Org Manual 1#+title: The Org Manual
2#+subtitle: Release {{{version}}} 2#+subtitle: Release {{{version}}}
3#+author: The Org Mode Developers 3#+author: The Org Mode Developers
4#+date: {{{modification-time}}}
5#+language: en 4#+language: en
6 5
7 6
@@ -3244,7 +3243,7 @@ A link should be enclosed in double brackets and may contain
3244descriptive text to be displayed instead of the URL (see [[*Link 3243descriptive text to be displayed instead of the URL (see [[*Link
3245Format]]), for example: 3244Format]]), for example:
3246 3245
3247: [[http://www.gnu.org/software/emacs/][GNU Emacs]] 3246: [[https://www.gnu.org/software/emacs/][GNU Emacs]]
3248 3247
3249If the description is a file name or URL that points to an image, HTML 3248If the description is a file name or URL that points to an image, HTML
3250export (see [[*HTML Export]]) inlines the image as a clickable button. If 3249export (see [[*HTML Export]]) inlines the image as a clickable button. If
@@ -21233,7 +21232,7 @@ be complete if the ones above were not mentioned in this manual.
21233:DESCRIPTION: The license for this documentation. 21232:DESCRIPTION: The license for this documentation.
21234:END: 21233:END:
21235 21234
21236#+include: fdl.org 21235#+texinfo: @include doclicense.texi
21237 21236
21238* Main Index 21237* Main Index
21239:PROPERTIES: 21238:PROPERTIES:
@@ -21286,7 +21285,7 @@ modify this GNU manual."
21286 21285
21287* Export Setup :noexport: 21286* Export Setup :noexport:
21288 21287
21289#+setupfile: doc-setup.org 21288#+setupfile: org-setup.org
21290 21289
21291#+export_file_name: org.texi 21290#+export_file_name: org.texi
21292 21291