aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-11-09 21:05:19 -0500
committerKyle Meyer <kyle@kyleam.com>2020-11-09 21:39:02 -0500
commit5d08d4e24b8c9c569a82e4540135b3a0fe5a093e (patch)
tree0f3d5e3a3d7b768521e839835f8ffcce96420546
parentcd56c427a385e85d76e663234f9bcada16ac7107 (diff)
downloadorgmode-backport-notes-5d08d4e24b8c9c569a82e4540135b3a0fe5a093e.tar.gz
org-maint: Add header/license
Also, I tried to come up with another name, since "maint" for "maintenance" is a bit broad: these commands only deal with porting commits. But I couldn't come up with anything, and it doesn't really matter.
-rw-r--r--org-maint.el24
1 files changed, 24 insertions, 0 deletions
diff --git a/org-maint.el b/org-maint.el
index 524ce8e..947e3d9 100644
--- a/org-maint.el
+++ b/org-maint.el
@@ -1,3 +1,24 @@
+;;; org-maint.el --- Helpers for porting Emacs commits to Org -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2020 Kyle Meyer
+
+;; Author: Kyle Meyer <kyle@kyleam.com>
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+;;; Code:
+
(defvar org-maint-emacs-dir "~/src/emacs/emacs/")
(defvar org-maint-org-dir "~/src/emacs/org-mode-devel/")
@@ -66,3 +87,6 @@ checked is taken from the Org \"ref\" property."
"etc/schema/od-schema-v1.2-os.rnc"
"lisp/org")
(display-buffer (current-buffer)))))
+
+(provide 'org-maint)
+;;; org-maint.el ends here