From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: [Babel] Arguments... Date: Fri, 05 Nov 2010 15:42:54 -0600 Message-ID: <87zktnphtx.fsf@gmail.com> References: <804obvyas7.fsf@mundaneum.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from [140.186.70.92] (port=44115 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PEU4H-0005eN-60 for emacs-orgmode@gnu.org; Fri, 05 Nov 2010 17:43:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PEU4F-0000aE-Nd for emacs-orgmode@gnu.org; Fri, 05 Nov 2010 17:43:29 -0400 Received: from mail-yw0-f41.google.com ([209.85.213.41]:39373) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PEU4F-0000a4-K4 for emacs-orgmode@gnu.org; Fri, 05 Nov 2010 17:43:27 -0400 Received: by ywl5 with SMTP id 5so2930723ywl.0 for ; Fri, 05 Nov 2010 14:43:27 -0700 (PDT) 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: =?utf-8?Q?S=C3=A9bastien?= Vauban Cc: emacs-orgmode@gnu.org S=C3=A9bastien Vauban writes: > Hello, > > Two small questions, with that minimal example: > > #+begin_src org > ,* Database > , > ,** Back up the database > , > ,Create a backup file of the existing database: > , > ,#+srcname: backup-db(dbName, dbBackupFile) > ,#+begin_src sql > ,BACKUP DATABASE dbName TO DISK =3D 'dbBackupFile' > ,go > ,#+end_src > , > ,** Back up the database > , > ,Create a backup file of the existing database: > , > ,#+srcname: backup-db :var dbName :var dbBackupFile > ,#+begin_src sql > ,BACKUP DATABASE dbName TO DISK =3D 'dbBackupFile' > ,go > ,#+end_src > #+end_src > > 1. I read on http://orgmode.org/manual/var.html that the second way to pa= ss > arguments is "more natural". Though, "nobody" "never" uses it in all t= he > examples published on this ML. Why? Are there still subtle differences= , or > could such come in the future that would make one choose one over the > other? > I think we are committed to maintaining both ways of defining variables for code blocks for the foreseeable future. > > 2. In both cases, the variables are not exported to HTML (and LaTeX?), ma= king > the readability of such a documented code a bit difficult. Feature or = bug? > The variable names should be exported to both HTML and LaTeX (when org-export-latex-listings is set to true) when the following declaration schema is used (at least they are for me). #+source: something(x=3D9) #+begin_src emacs-lisp x #+end_src Best -- Eric > > Best regards, > Seb