From 89a35bc1473469d796253651668902f56e23cf7e Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Fri, 22 Nov 2013 08:27:40 -0700 Subject: [PATCH] inline src block parser set "switches" in info * lisp/ob-core.el (org-babel-parse-inline-src-block-match): Inline src block parser set "switches" in info, otherwise later offset are broken. --- lisp/ob-core.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/ob-core.el b/lisp/ob-core.el index ba69b2c89..fb803046e 100644 --- a/lisp/ob-core.el +++ b/lisp/ob-core.el @@ -1454,7 +1454,8 @@ specified in the properties of the current outline entry." (append (org-babel-params-from-properties lang) (list (org-babel-parse-header-arguments - (org-no-properties (or (match-string 4) ""))))))))) + (org-no-properties (or (match-string 4) "")))))) + nil))) (defun org-babel-balanced-split (string alts) "Split STRING on instances of ALTS. -- 2.11.4.GIT