summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-21 03:27:31 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-21 03:27:31 +0000
commite613c7cf5fed9bca9ccf98b045c45596508bd4e0 (patch)
tree2f970f3af82a9f4da96328d3f323ba04fe9c8936 /compile.c
parent9099e29efe2af2d820968b30d1419d09d8a697f0 (diff)
* compile.c: remove "illegal".
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14388 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/compile.c b/compile.c
index 046c68a7fe..b17eb253f3 100644
--- a/compile.c
+++ b/compile.c
@@ -2966,7 +2966,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
}
ip = ip->parent_iseq;
}
- COMPILE_ERROR((ERROR_ARGS "Illegal break"));
+ COMPILE_ERROR((ERROR_ARGS "Invalid break"));
}
break;
}
@@ -3020,7 +3020,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
}
}
else {
- COMPILE_ERROR((ERROR_ARGS "Illegal next"));
+ COMPILE_ERROR((ERROR_ARGS "Invalid next"));
}
}
break;
@@ -3081,7 +3081,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
}
}
else {
- COMPILE_ERROR((ERROR_ARGS "Illegal redo"));
+ COMPILE_ERROR((ERROR_ARGS "Invalid redo"));
}
}
break;
@@ -3093,7 +3093,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
INT2FIX(0x04) /* TAG_RETRY */ );
}
else {
- COMPILE_ERROR((ERROR_ARGS "Illegal retry"));
+ COMPILE_ERROR((ERROR_ARGS "Invalid retry"));
}
break;
}
@@ -3788,7 +3788,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
while (is) {
if (is->type == ISEQ_TYPE_TOP || is->type == ISEQ_TYPE_CLASS) {
- COMPILE_ERROR((ERROR_ARGS "Illegal return"));
+ COMPILE_ERROR((ERROR_ARGS "Invalid return"));
break;
}
else {
@@ -3820,7 +3820,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
INIT_ANCHOR(args);
if (iseq->type == ISEQ_TYPE_TOP || iseq->type == ISEQ_TYPE_CLASS) {
- COMPILE_ERROR((ERROR_ARGS "Illegal yield"));
+ COMPILE_ERROR((ERROR_ARGS "Invalid yield"));
}
if (node->nd_head) {