From 1ca7485a88041b3c2e5537723baefa6253218b99 Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Mon, 26 Mar 2012 07:18:31 -0400 Subject: [PATCH] don't truncate results name on call line execution * lisp/ob.el (org-babel-where-is-src-block-result): Don't truncate results name on call line execution. --- lisp/ob.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob.el b/lisp/ob.el index 64a96dd29..4601e73b5 100644 --- a/lisp/ob.el +++ b/lisp/ob.el @@ -1612,7 +1612,7 @@ following the source block." (inlinep (when (org-babel-get-inline-src-block-matches) (match-end 0))) (name (if on-lob-line - (nth 0 (org-babel-lob-get-info)) + (mapconcat #'identity (butlast (org-babel-lob-get-info)) "") (nth 4 (or info (org-babel-get-src-block-info 'light))))) (head (unless on-lob-line (org-babel-where-is-src-block-head))) found beg end) -- 2.11.4.GIT