diff options
author | Kyle Meyer <kyle@kyleam.com> | 2022-11-29 23:05:53 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2022-11-29 23:05:53 -0500 |
commit | 0625651e8a61c9effc31ff771f15885a3a37c6e6 (patch) | |
tree | db4c09e8ef119ad4a9a4028c5e615fd58d2dee69 /lisp/org/ob-eshell.el | |
parent | edd64e64a389e0f0e6ce670846d4fae79a9d8b35 (diff) | |
download | emacs-0625651e8a61c9effc31ff771f15885a3a37c6e6.tar.gz emacs-0625651e8a61c9effc31ff771f15885a3a37c6e6.tar.bz2 emacs-0625651e8a61c9effc31ff771f15885a3a37c6e6.zip |
Update to Org 9.6-3-ga4d38e
Diffstat (limited to 'lisp/org/ob-eshell.el')
-rw-r--r-- | lisp/org/ob-eshell.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/org/ob-eshell.el b/lisp/org/ob-eshell.el index 135deb4a4b8..937db69dc5a 100644 --- a/lisp/org/ob-eshell.el +++ b/lisp/org/ob-eshell.el @@ -4,7 +4,7 @@ ;; Author: stardiviner <numbchild@gmail.com> ;; Maintainer: stardiviner <numbchild@gmail.com> -;; Homepage: https://github.com/stardiviner/ob-eshell +;; URL: https://github.com/stardiviner/ob-eshell ;; Keywords: literate programming, reproducible research ;; This file is part of GNU Emacs. @@ -27,6 +27,10 @@ ;; Org Babel support for evaluating Eshell source code. ;;; Code: + +(require 'org-macs) +(org-assert-version) + (require 'ob) (require 'eshell) |