branch: externals/eev commit 84883f645a3c1bbd4583ca04f16de85263659693 Author: Eduardo Ochs <eduardoo...@gmail.com> Commit: Eduardo Ochs <eduardoo...@gmail.com>
Added the files "eev.el" and ".gitignore". --- .gitignore | 3 +++ eev.el | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fb89c5b --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.elc +eev-autoloads.el +eev-pkg.el diff --git a/eev.el b/eev.el new file mode 100644 index 0000000..d691e4e --- /dev/null +++ b/eev.el @@ -0,0 +1,33 @@ +;;; eev.el --- Support for e-scripts (eepitch blocks, elisp hyperlinks, etc) + +;; Copyright (C) 2012-2019 Free Software Foundation, Inc. + +;; Author: Eduardo Ochs <eduardoo...@gmail.com> +;; Package-Requires: ((emacs "24.3")) +;; Keywords: lisp e-scripts +;; URL: http://angg.twu.net/#eev +;; Version: 20190401 + +;; 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/>. + +;;; Commentary: + +;; + +;;; Code: + + + +(provide 'eev) +;;; eev.el ends here