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-awk.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-awk.el')
-rw-r--r-- | lisp/org/ob-awk.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/org/ob-awk.el b/lisp/org/ob-awk.el index 1d5a6f24eb7..1db9c6b00c5 100644 --- a/lisp/org/ob-awk.el +++ b/lisp/org/ob-awk.el @@ -5,7 +5,7 @@ ;; Author: Eric Schulte ;; Maintainer: Tyler Smith <tyler@plantarum.ca> ;; Keywords: literate programming, reproducible research -;; Homepage: https://orgmode.org +;; URL: https://orgmode.org ;; This file is part of GNU Emacs. @@ -32,6 +32,10 @@ ;; which will be passed to the awk process through STDIN ;;; Code: + +(require 'org-macs) +(org-assert-version) + (require 'ob) (require 'org-compat) @@ -51,7 +55,7 @@ (defun org-babel-execute:awk (body params) "Execute a block of Awk code with org-babel. This function is called by `org-babel-execute-src-block'." - (message "executing Awk source code block") + (message "Executing Awk source code block") (let* ((result-params (cdr (assq :result-params params))) (cmd-line (cdr (assq :cmd-line params))) (in-file (cdr (assq :in-file params))) |