diff options
-rw-r--r-- | org-maint.el | 24 |
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 |