From mboxrd@z Thu Jan 1 00:00:00 1970 From: Viktor Rosenfeld Subject: Output of R babel blocks with quotes is mangled/truncated Date: Sun, 8 Jul 2012 05:22:10 +0200 Message-ID: <20120708032210.GB59773@kenny.fritz.box> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:45245) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sni4h-00013M-Bw for emacs-orgmode@gnu.org; Sat, 07 Jul 2012 23:22:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sni4f-00057q-NI for emacs-orgmode@gnu.org; Sat, 07 Jul 2012 23:22:18 -0400 Received: from mail-bk0-f41.google.com ([209.85.214.41]:60284) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sni4f-00057m-D0 for emacs-orgmode@gnu.org; Sat, 07 Jul 2012 23:22:17 -0400 Received: by bkcjc3 with SMTP id jc3so6770112bkc.0 for ; Sat, 07 Jul 2012 20:22:15 -0700 (PDT) Content-Disposition: inline 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, if a value outputted by R in a Babel block contains quotes only the quoted parted is exported. Consider this: #+BEGIN_SRC R q = 'cat="S"' q #+END_SRC #+RESULTS: : S The expected result would be entire string, i.e. 'cat="S"' (without single quotes). Is there a workaround? I've tried escaping with backslashes to no avail. Cheers, Viktor