mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-23 07:18:53 +00:00
ob: better parsing of list output from scripting languages
* lisp/ob.el (org-babel-script-escape): Replace commas with spaces for better list reading when list items are packed with commas, e.g. Haskell list output.
This commit is contained in:
parent
9bf88fddfc
commit
1d3db31ca7
@ -1803,7 +1803,8 @@ block but are passed literally to the \"example-block\"."
|
||||
(93 (if (or in-double in-single) ; ]
|
||||
(cons 93 out)
|
||||
(cons 41 out)))
|
||||
(44 (if (or in-double in-single) (cons 44 out) out)) ; ,
|
||||
(44 (if (or in-double in-single) ; ,
|
||||
(cons 44 out) (cons 32 out)))
|
||||
(39 (if in-double ; '
|
||||
(cons 39 out)
|
||||
(setq in-single (not in-single)) (cons 34 out)))
|
||||
|
Loading…
Reference in New Issue
Block a user