From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Frankel Subject: [BUG] call results not creating #results Date: Wed, 13 Nov 2013 14:06:29 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35665) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vgflu-0002gY-3D for emacs-orgmode@gnu.org; Wed, 13 Nov 2013 14:06:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vgfll-0000vu-Ue for emacs-orgmode@gnu.org; Wed, 13 Nov 2013 14:06:38 -0500 Received: from [204.62.15.78] (port=44792 helo=mail.rickster.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vgfll-0000vh-Rc for emacs-orgmode@gnu.org; Wed, 13 Nov 2013 14:06:29 -0500 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: schulte.eric@gmail.com Cc: emacs-orgmode Eric- Since you're looking at call lines :)... there is a (fairly new i think) bug: When searching forward for results, following call lines are not being respected as stop points. For instance, given: #+BEGIN_SRC org ,* Call block test ,#+name: call-me ,#+BEGIN_SRC emacs-lisp :var v="one" v ,#+END_SRC ,#+RESULTS: call-me : one ,#+call: call-me(v="two") ,#+RESULTS: : two #+END_SRC If i insert a new call-block before "two" and execute it, the following occurs #+BEGIN_SRC org ,* Call block test ,#+name: call-me ,#+BEGIN_SRC emacs-lisp :var v="one" v ,#+END_SRC ,#+RESULTS: call-me : one ,#+call: call-me(v="three") ,#+call: call-me(v="two") ,#+RESULTS: : three #+END_SRC as you can see, it replaced the results for call-line two. Note that if i had named "two" and executed it before adding in call line "three", the results would be ok: #+BEGIN_SRC org ,* Call block test ,#+name: call-me ,#+BEGIN_SRC emacs-lisp :var v="one" v ,#+END_SRC ,#+RESULTS: call-me : one ,#+call: call-me(v="three") ,#+RESULTS: : three ,#+name: two ,#+call: call-me(v="two") ,#+RESULTS: two : two #+END_SRC rick