How to create hygienic environments?

2015-06-19 Thread Michael Tiedtke
Does anyone know how I to create empty environments in Guile Scheme (preferably 1.8)? The task at hand is well known: the user of an text editor can input complex commands with parameters (a little bit like in Emacs). Now I would like to /read/ these commands as single procedure calls with its

Re: How to create hygienic environments?

2015-06-19 Thread Matt Wette
On Jun 19, 2015, at 7:39 AM, Michael Tiedtke wrote: > Does anyone know how I to create empty environments in Guile Scheme > (preferably 1.8)? There is a procedure null-environment. Check the guile reference manual, start at "concept index". The guile manual is quite extensive.

Re: How to create hygienic environments?

2015-06-19 Thread Michael Tiedtke
On 20/06/2015 00:08, Matt Wette wrote: On Jun 19, 2015, at 7:39 AM, Michael Tiedtke wrote: Does anyone know how I to create empty environments in Guile Scheme (preferably 1.8)? There is a procedure null-environment. Check the guile reference manual, start at "concept index". The guile