[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: async.el: A simple asynchronous framework for Emacs
From: |
Thien-Thi Nguyen |
Subject: |
Re: async.el: A simple asynchronous framework for Emacs |
Date: |
Tue, 19 Jun 2012 07:11:37 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.0.92 (gnu/linux) |
() John Wiegley <address@hidden>
() Mon, 18 Jun 2012 21:51:31 -0500
Since it's likely that you'll want the child Emacs to heavy
lifting based on the parent Emacs' configuration, you can use
`async-inject-environment' to pass variable definitions across
the process boundary:
(async-start (lambda ()
(require 'some-module)
(async-inject-environment "\\`some-module-")
...))
The variable definitions from the module "some-module" will be
passed into the child.
The variable values must be of somewhat limited type, right?
- async.el: A simple asynchronous framework for Emacs, John Wiegley, 2012/06/18
- Re: async.el: A simple asynchronous framework for Emacs,
Thien-Thi Nguyen <=
- Re: async.el: A simple asynchronous framework for Emacs, Stefan Monnier, 2012/06/19
- Re: async.el: A simple asynchronous framework for Emacs, John Wiegley, 2012/06/19
- Re: async.el: A simple asynchronous framework for Emacs, John Wiegley, 2012/06/20
- Re: async.el: A simple asynchronous framework for Emacs, SAKURAI Masashi, 2012/06/20
- Re: async.el: A simple asynchronous framework for Emacs, John Wiegley, 2012/06/20
- Re: async.el: A simple asynchronous framework for Emacs, John Wiegley, 2012/06/20