diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ChangeLog | 4 | ||||
-rw-r--r-- | examples/modules/main | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/examples/ChangeLog b/examples/ChangeLog index 99e51f89c..d7a556d59 100644 --- a/examples/ChangeLog +++ b/examples/ChangeLog @@ -1,3 +1,7 @@ +2001-07-14 Martin Grabmueller <mgrabmue@cs.tu-berlin.de> + + * modules/main: Use :renamer for specifying renaming procedure. + 2001-07-10 Thien-Thi Nguyen <ttn@revel.glug.org> * scripts/hello (display-version, display-help): Fix comment; nfc. diff --git a/examples/modules/main b/examples/modules/main index 603ea10f1..e4cc71dc7 100644 --- a/examples/modules/main +++ b/examples/modules/main @@ -22,7 +22,7 @@ ;; Module 1 is imported completely, too, but the procedure names are ;; prefixed with the module name. ;; - :use-module ((module-1) :rename (symbol-prefix-proc 'module-1:)) + :use-module ((module-1) :renamer (symbol-prefix-proc 'module-1:)) ;; From module 2, only the procedure `braz' is imported, so that the ;; procedures `foo' and `bar' also exported by that module don't |