1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-11-24 07:20:29 +00:00

lisp/ob-maxima.el (org-babel-header-args:maxima): Fix value

The value should be a lists, as in
`org-babel-common-header-args-w-values'.

Reported-by: gerard.vermeulen@posteo.net
Link: https://orgmode.org/list/3e1e1479365794e2cb3b6d1979e6c98c@posteo.net
This commit is contained in:
Ihor Radchenko 2023-12-17 21:02:13 +01:00
parent 92fec81e2e
commit 2df9642f1d
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B

View File

@ -38,8 +38,8 @@
(require 'ob)
(defconst org-babel-header-args:maxima
'((batch . (batchload batch load))
(graphics-pkg . (plot draw)))
'((batch . ((batchload batch load)))
(graphics-pkg . ((plot draw))))
"Maxima-specific header arguments.")
(defvar org-babel-tangle-lang-exts)