diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-06-09 21:56:59 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-06-09 21:56:59 +0000 |
| commit | 713cb5c51298df218cc2ac69a4ce9be8e458af8d (patch) | |
| tree | 063cc846674c1d5b23e0badcea50a33264e033a0 /eval.c | |
| parent | 8de6a98fc9064a26ea9b55ae24401138cbd08cc5 (diff) | |
| download | ruby-713cb5c51298df218cc2ac69a4ce9be8e458af8d.tar.gz ruby-713cb5c51298df218cc2ac69a4ce9be8e458af8d.tar.xz ruby-713cb5c51298df218cc2ac69a4ce9be8e458af8d.zip | |
* eval.c (CALLARGS): remove last semicolon. C90 compiler doesn't
allow any lines (even if they're empty) within variable
declaretions.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10237 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
| -rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2146,7 +2146,7 @@ copy_node_scope(NODE *node, NODE *rval) # define TMP_ALLOC(n) ALLOCA_N(VALUE,n) #endif -#define CALLARGS int argc; VALUE *argv; struct BLOCK *block = 0, _block; +#define CALLARGS int argc; VALUE *argv; struct BLOCK *block = 0, _block #define SETUP_ARGS0(anode,extra) do {\ NODE *n = anode, *bpass = 0;\ if (n && nd_type(n) == NODE_BLOCK_PASS) {\ |
