emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org c9dc660 11/85: Fix org-babel-header-args:haskell no


From: ELPA Syncer
Subject: [elpa] externals/org c9dc660 11/85: Fix org-babel-header-args:haskell not being an alist
Date: Mon, 27 Sep 2021 15:57:40 -0400 (EDT)

branch: externals/org
commit c9dc6603a4dd81c4fe7dd2d785ee97bcc323da01
Author: Ihor Radchenko <yantar92@gmail.com>
Commit: Ihor Radchenko <yantar92@gmail.com>

    Fix org-babel-header-args:haskell not being an alist
    
    * lisp/ob-haskell.el (org-babel-header-args:haskell): The old value of
    the variable was not argument alist, as expected by Org babel code.
    
    Fixes https://orgmode.org/list/87fsty7750.fsf@gmail.com
---
 lisp/ob-haskell.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/ob-haskell.el b/lisp/ob-haskell.el
index a6f0e55..971e1ce 100644
--- a/lisp/ob-haskell.el
+++ b/lisp/ob-haskell.el
@@ -70,7 +70,7 @@ 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]