emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Batch mode evaluation of source code?


From: Eric Schulte
Subject: Re: [O] Batch mode evaluation of source code?
Date: Fri, 17 Jun 2011 16:05:06 -0700
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux)

Herbert Sitz <address@hidden> writes:

> Eric Schulte <schulte.eric <at> gmail.com> writes:
>
>>  
>> The following org-mode file and minimal elisp file can be used 
>> to print
>> the results of evaluating a code block from a batch Emacs 
>> session 
>> (note
>> this is using Emacs24, so Org-mode/Babel do not need to be 
>> explicitly
>> loaded).
>> 
>> I used the following command line
>> : emacs --batch -l run-code.el 2> /dev/null
>> 
>
> Eric -- Thanks, very cool.  I'm toying around with this approach to do dynamic
> code-block evaluation in the Org-mode clone I'm making in Vim. No problem with
> on-export-evaluation, since the vim-org-clone just saves the file and issues a
> batch mode org-export or org-publish command to emacs, which takes over from
> there.
>
> I think this dynamic evaluation could be useful, but it also seems like a new
> server is getting called for each emacs --batch mode call.  That's cumbersome
> for this dynamic-evaluation stuff because of start-up overhead for emacs on 
> each call.  Is that the way its supposed to work?  
>
> I'm working on Windows7 and have an Emacs client running when I issue
> the batch command, which I assumed also means there is a running emacs
> server.  Is the call getting made to the running emacs server?  If so,
> is there some way to avoid the startup overhead (which seems to come
> from 'Adding c:/program files (x86)/emacs/EmacsW32/lisp/ to load
> path.').  Or, if my batch call is _not_ making use of the running
> Emacs server is there some way to get it to use that server?
>
> Thanks again,
>

The example I attached using "--batch" *does* startup a new Emacs
instance on every execution.  You should be able to replace the "emacs"
command with "emacsclient" (or some windows equivalent) command to
connect to a running server, rather than having to create a new
connection on every evaluation.

By connecting to a persistent Emacs instance much of the .el script I
attached could be removed assuming Babel has already been configured in
the running Emacs server.

Hope this helps -- Eric

>
> Herb
>
>
>

-- 
Eric Schulte
http://cs.unm.edu/~eschulte/



reply via email to

[Prev in Thread] Current Thread [Next in Thread]