Quellcode durchsuchen

fixed export of inline src blocks

* lisp/ob-exp.el (org-babel-exp-non-block-elements): Fixed export of
  inline src blocks.
Eric Schulte vor 11 Jahren
Ursprung
Commit
6a4dfd3182
1 geänderte Dateien mit 3 neuen und 1 gelöschten Zeilen
  1. 3 1
      lisp/ob-exp.el

+ 3 - 1
lisp/ob-exp.el

@@ -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))