fixed export of inline src blocks

* lisp/ob-exp.el (org-babel-exp-non-block-elements): Fixed export of
  inline src blocks.
This commit is contained in:
Eric Schulte 2013-11-23 12:24:34 -07:00
parent 1b0fb1a484
commit 6a4dfd3182

View file

@ -178,7 +178,9 @@ this template."
(end-el (org-element-property :end element)))
(case type
(inline-src-block
(let* ((info (org-babel-parse-inline-src-block-match))
(let* ((head (match-beginning 0))
(info (append (org-babel-parse-inline-src-block-match)
(list nil nil head)))
(params (nth 2 info)))
(setf (nth 1 info)
(if (and (cdr (assoc :noweb params))