[Gd-chatter] r11051 - trunk/src/d2c/runtime/dylan
housel at gwydiondylan.org
housel at gwydiondylan.org
Sun Dec 10 01:29:26 CET 2006
Author: housel
Date: Sun Dec 10 01:29:24 2006
New Revision: 11051
Modified:
trunk/src/d2c/runtime/dylan/macros.dylan
Log:
Bug: 7191
Fix a problem with omitted return-value specifications
* d2c/runtime/dylan/macros.dylan (copy-down-method-definer):
Add a semicolon after the optional return-value declaration in the
macro expansion.
Modified: trunk/src/d2c/runtime/dylan/macros.dylan
==============================================================================
--- trunk/src/d2c/runtime/dylan/macros.dylan (original)
+++ trunk/src/d2c/runtime/dylan/macros.dylan Sun Dec 10 01:29:24 2006
@@ -595,7 +595,7 @@
define macro copy-down-method-definer
{ define ?adjectives:* copy-down-method ?:name ( ?params:* ) ?rest:* }
- => { define ?adjectives method ?name ( ?params ) ?rest
+ => { define ?adjectives method ?name ( ?params ) ?rest;
%%primitive(inline-mv-call, next-method,
copy-down-arguments(?params));
end }
More information about the chatter
mailing list