This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: export using current module system


thi <ttn@netcom.com> writes:

> just to add to the meelee, i too like to use plain `define' and then
> export symbols.

1998-07-16  Mikael Djurfeldt  <mdj@barbara.nada.kth.se>

	* boot-9.scm (export, export-syntax): New special forms: Export
	bindings from a module.  `(export name1 name2 ...)' can be used at
	the top of a module (after `define-module') to specify which names
	should be exported.  It can be used as an alternative to
	`define-public'.  `export-syntax' works equivalently to `export'
	but is intended for export of syntactic keywords.
	(Thanks to Thien-Thi Nguyen.)