summaryrefslogtreecommitdiffhomepage
path: root/src/kernel.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-03-03 04:28:58 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2013-03-03 04:28:58 -0800
commit4354999fc628d248da85eaf7caf4e951cb421c92 (patch)
treee9b051e73cc45f58a1ca2964e33228803752e497 /src/kernel.c
parentbc46c374b40354b1f1320d5bea75fd852d0ea9ed (diff)
parent6cd7017ec11b0cbe40e8dbe462e5eda9ad7ce97c (diff)
downloadmruby-4354999fc628d248da85eaf7caf4e951cb421c92.tar.gz
mruby-4354999fc628d248da85eaf7caf4e951cb421c92.zip
Merge pull request #933 from monaka/pr-remove-trailing-whitespaces-20130303
Remove trailing whitespaces. This is just a cosmetic change.
Diffstat (limited to 'src/kernel.c')
-rw-r--r--src/kernel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel.c b/src/kernel.c
index e45953fd3..8ea69e899 100644
--- a/src/kernel.c
+++ b/src/kernel.c
@@ -191,7 +191,7 @@ mrb_f_send(mrb_state *mrb, mrb_value self)
mrb_sym name;
mrb_value block, *argv;
int argc;
-
+
mrb_get_args(mrb, "n*&", &name, &argv, &argc, &block);
return mrb_funcall_with_block(mrb,self, name, argc, argv, block);
}
@@ -483,7 +483,7 @@ mrb_value mrb_yield_internal(mrb_state *mrb, mrb_value b, int argc, mrb_value *a
* call-seq:
* obj.instance_eval {| | block } -> obj
*
- * Evaluates the given block,within the context of the receiver (_obj_).
+ * Evaluates the given block,within the context of the receiver (_obj_).
* In order to set the context, the variable +self+ is set to _obj_ while
* the code is executing, giving the code access to _obj_'s
* instance variables. In the version of <code>instance_eval</code>
@@ -913,7 +913,7 @@ mrb_f_raise(mrb_state *mrb, mrb_value self)
{
mrb_value a[2], exc;
int argc;
-
+
argc = mrb_get_args(mrb, "|oo", &a[0], &a[1]);
switch (argc) {