From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Cox Subject: #+end_src interfering with :results raw Date: Sat, 14 May 2011 16:49:45 +1000 Message-ID: <5FC4197E-B1CC-4218-9B02-68C0240706BA@gmail.com> Mime-Version: 1.0 (Apple Message framework v1084) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:53956) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QL8fl-0004se-Ok for emacs-orgmode@gnu.org; Sat, 14 May 2011 02:49:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QL8fk-00045E-Si for emacs-orgmode@gnu.org; Sat, 14 May 2011 02:49:57 -0400 Received: from mail-pz0-f41.google.com ([209.85.210.41]:61599) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QL8fk-000451-OC for emacs-orgmode@gnu.org; Sat, 14 May 2011 02:49:56 -0400 Received: by pzk4 with SMTP id 4so2137846pzk.0 for ; Fri, 13 May 2011 23:49:55 -0700 (PDT) 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: emacs-orgmode@gnu.org Hi, I have an org file like this one, #+TITLE: An issue with #+end_src #+srcname: no_issue() #+begin_src sh :results output echo '#+begin_src' #+end_src #+call: no_issue() :results raw #+srcname: the_issue() #+begin_src sh :results output echo '#+end_src' #+end_src #+call: the_issue() :results raw When C-c C-c on the line containing "#+call: no_issue() :results raw", = the following lines are inserted: #+results: no_issue() #+begin_src When C-c C-c on the line containing "#+call: the_issue() :results raw", = the following unexpected lines are inserted: #+results: the_issue() nil I am currently running a2f29de86. Thanks Mark Cox=