From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martin Halder Subject: [Babel] size limit of #+call Date: Sat, 24 Mar 2012 19:39:17 +0100 Message-ID: <8889A3B3-267B-4E41-B52D-D33DC9162523@gmail.com> Mime-Version: 1.0 (Apple Message framework v1257) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:40779) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SBVs4-0002GA-8w for emacs-orgmode@gnu.org; Sat, 24 Mar 2012 14:39:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SBVs2-00018G-Hx for emacs-orgmode@gnu.org; Sat, 24 Mar 2012 14:39:23 -0400 Received: from mail-wi0-f171.google.com ([209.85.212.171]:54903) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SBVs2-00017n-8y for emacs-orgmode@gnu.org; Sat, 24 Mar 2012 14:39:22 -0400 Received: by wibhj13 with SMTP id hj13so2296353wib.12 for ; Sat, 24 Mar 2012 11:39:19 -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 all, trying to use a function to output a latex file using python with = #+call. The example below does work but when pycalltest gets too big it just = output "nil". When I call pycalltest directly with C-c C-c it works even with a big = function. Is there a size limit when I use #+call ? Thanks for help, Martin #+name: = pycalltest(trans=3Dtranslation,items=3Ditems,cust=3Dcustomer,deta=3Ddetail= s,lang=3D"german",cur=3D"chf") #+begin_src python :results output execfile('latex.py') print lx_config #+end_src #+call: pycalltest(translation,items,customer,details,"german","chf") = :file "test.tex"