From 665fba0c2c2751f8440a68196290524da998cac7 Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Mon, 26 Mar 2012 13:34:19 -0400 Subject: [PATCH] removed extra []s when parsing inline call_foo lines * lisp/ob-lob.el (org-babel-lob-get-info): Removed extra []s when parsing inline call_foo lines. --- lisp/ob-lob.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ob-lob.el b/lisp/ob-lob.el index eff273783..b21a28165 100644 --- a/lisp/ob-lob.el +++ b/lisp/ob-lob.el @@ -108,8 +108,8 @@ if so then run the appropriate source block from the Library." (list (format "%s%s(%s)%s" (nonempty 3 12) - (if (not (= 0 (length (nonempty 5 13)))) - (concat "[" (nonempty 5 13) "]") "") + (if (not (= 0 (length (nonempty 5 14)))) + (concat "[" (nonempty 5 14) "]") "") (or (nonempty 7 16) "") (or (nonempty 8 19) "")) (nonempty 9 18)))