diff options
Diffstat (limited to 'lisp/org/ob-haskell.el')
-rw-r--r-- | lisp/org/ob-haskell.el | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/org/ob-haskell.el b/lisp/org/ob-haskell.el index d7ac1b04b36..971e1ce6af8 100644 --- a/lisp/org/ob-haskell.el +++ b/lisp/org/ob-haskell.el @@ -3,6 +3,7 @@ ;; Copyright (C) 2009-2021 Free Software Foundation, Inc. ;; Author: Eric Schulte +;; Maintainer: Lawrence Bottorff <borgauf@gmail.com> ;; Keywords: literate programming, reproducible research ;; Homepage: https://orgmode.org @@ -33,9 +34,9 @@ ;;; Requirements: -;; - haskell-mode: http://www.iro.umontreal.ca/~monnier/elisp/#haskell-mode -;; - inf-haskell: http://www.iro.umontreal.ca/~monnier/elisp/#haskell-mode -;; - (optionally) lhs2tex: http://people.cs.uu.nl/andres/lhs2tex/ +;; - haskell-mode: https://www.iro.umontreal.ca/~monnier/elisp/#haskell-mode +;; - inf-haskell: https://www.iro.umontreal.ca/~monnier/elisp/#haskell-mode +;; - (optionally) lhs2tex: https://people.cs.uu.nl/andres/lhs2tex/ ;;; Code: (require 'ob) @@ -69,11 +70,11 @@ a parameter, such as \"ghc -v\"." :package-version '(Org "9.4") :type 'string) -(defconst org-babel-header-args:haskell '(compile . :any) +(defconst org-babel-header-args:haskell '((compile . :any)) "Haskell-specific header arguments.") (defun org-babel-haskell-execute (body params) - "This function should only be called by `org-babel-execute:haskell'" + "This function should only be called by `org-babel-execute:haskell'." (let* ((tmp-src-file (org-babel-temp-file "Haskell-src-" ".hs")) (tmp-bin-file (org-babel-process-file-name |