From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Thomas S. Dye" Subject: unnamed :results Date: Sat, 1 Jan 2011 13:34:20 -1000 Message-ID: <81CF2144-4011-4ED7-AD46-3BA6A590A70B@tsdye.com> Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=51242 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PZAxw-0004kp-PU for emacs-orgmode@gnu.org; Sat, 01 Jan 2011 18:34:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PZAxv-0002yW-PB for emacs-orgmode@gnu.org; Sat, 01 Jan 2011 18:34:28 -0500 Received: from oproxy3-pub.bluehost.com ([69.89.21.8]:38463) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1PZAxv-0002y9-F7 for emacs-orgmode@gnu.org; Sat, 01 Jan 2011 18:34:27 -0500 Received: from cpe-66-91-68-127.hawaii.res.rr.com ([66.91.68.127] helo=[192.168.1.2]) by box472.bluehost.com with esmtpa (Exim 4.69) (envelope-from ) id 1PZAxt-0001uW-8v for emacs-orgmode@gnu.org; Sat, 01 Jan 2011 16:34:25 -0700 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org Mode Aloha all, In the course of updating an Org-mode file to take account of the new file output handling for R, I noticed a change in the naming of results blocks. In the example below, the top #+results: line was produced with the most recent Org-mode from git. The previous behavior is on the following line. #+srcname: r-complete-length-histogram-pdf #+begin_src R :results output graphics :file r/adze_len_eg.png :var x=whole-adzes library(ggplot2) adze.len <- ggplot(x, aes(length_poll)) adze.len + geom_histogram() #+end_src #+results: [[file:r/adze_len_eg.png]] #+results: r-complete-length-histogram-pdf [[file:r/adze_len_eg.png]] The only change (other than updating Org-mode) was the addition of graphics to the :results header argument. All the best, Tom