From 36164f06077d0629f5e898e86bf0afe41cc84d6d Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Sat, 25 Jun 2011 14:25:18 -0700 Subject: [PATCH] ob: fix empty-argument bug introduced by recent inline call lines * lisp/ob-lob.el (org-babel-lob-get-info): If the arguments are empty, then allow them to be so. --- lisp/ob-lob.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-lob.el b/lisp/ob-lob.el index d04944df4..52e4b02df 100644 --- a/lisp/ob-lob.el +++ b/lisp/ob-lob.el @@ -112,7 +112,7 @@ if so then run the appropriate source block from the Library." (nonempty 3 12) (if (not (= 0 (length (nonempty 5 13)))) (concat "[" (nonempty 5 13) "]") "") - (nonempty 7 16) + (or (nonempty 7 16) "") (or (nonempty 8 18) "")) (nonempty 9 17))) (list (length (nonempty 1 11)))))))))