summaryrefslogtreecommitdiffstats
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-22 14:23:33 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-22 14:23:33 +0000
commita22b40afb40ecb02659a42c192055a6f78afffc8 (patch)
tree5b2e87ac380efcb2141c4fab97e86c25c7214799 /vm_insnhelper.c
parent94fd9db802721da2d906518c964dcfff044aac52 (diff)
downloadruby-a22b40afb40ecb02659a42c192055a6f78afffc8.tar.gz
ruby-a22b40afb40ecb02659a42c192055a6f78afffc8.tar.xz
ruby-a22b40afb40ecb02659a42c192055a6f78afffc8.zip
stripped trailing spaces.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22552 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index ffb36e9a0..ce1f0984d 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -30,7 +30,7 @@ vm_push_frame(rb_thread_t * th, const rb_iseq_t * iseq,
int i;
/* setup vm value stack */
-
+
/* nil initialize */
for (i=0; i < local_size; i++) {
*sp = Qnil;
@@ -798,7 +798,7 @@ vm_yield_setup_block_args(rb_thread_t *th, const rb_iseq_t * iseq,
else {
int r = iseq->arg_rest;
- if (iseq->arg_post_len ||
+ if (iseq->arg_post_len ||
iseq->arg_opts) { /* TODO: implement simple version for (iseq->arg_post_len==0 && iseq->arg_opts > 0) */
opt_pc = vm_yield_setup_block_args_complex(th, iseq, argc, argv);
}