summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNobuyoshi Nakada <[email protected]>2014-04-30 09:50:14 +0900
committerNobuyoshi Nakada <[email protected]>2014-04-30 09:50:14 +0900
commitab67c57f652c7c3a64ec4f4dc73259a14fb1b545 (patch)
treed9535d70ba74920783864fa6372ec471aca5af91 /src
parent345f172bba2dc5a6df607dded5c4b95b0e68f9bf (diff)
downloadmruby-ab67c57f652c7c3a64ec4f4dc73259a14fb1b545.tar.gz
mruby-ab67c57f652c7c3a64ec4f4dc73259a14fb1b545.zip
remove trailing spaces
Diffstat (limited to 'src')
-rw-r--r--src/mruby_core.rake2
-rw-r--r--src/numeric.c2
-rw-r--r--src/print.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/mruby_core.rake b/src/mruby_core.rake
index 87759aa61..04be0736c 100644
--- a/src/mruby_core.rake
+++ b/src/mruby_core.rake
@@ -2,7 +2,7 @@ MRuby.each_target do
current_dir = File.dirname(__FILE__).relative_path_from(Dir.pwd)
relative_from_root = File.dirname(__FILE__).relative_path_from(MRUBY_ROOT)
current_build_dir = "#{build_dir}/#{relative_from_root}"
-
+
lex_def = "#{current_dir}/lex.def"
objs = Dir.glob("#{current_dir}/*.c").map { |f|
next nil if cxx_abi_enabled? and f =~ /(codegen|error|vm).c$/
diff --git a/src/numeric.c b/src/numeric.c
index ef7b5fc82..46b3cdf37 100644
--- a/src/numeric.c
+++ b/src/numeric.c
@@ -150,7 +150,7 @@ mrb_flo_to_str(mrb_state *mrb, mrb_float flo)
else {
exp = 0;
}
-
+
/* preserve significands */
if (exp < 0) {
int i, beg = -1, end = 0;
diff --git a/src/print.c b/src/print.c
index 6472a4675..f4ed85601 100644
--- a/src/print.c
+++ b/src/print.c
@@ -38,7 +38,7 @@ mrb_print_error(mrb_state *mrb)
{
#ifdef ENABLE_STDIO
mrb_value s;
-
+
mrb_print_backtrace(mrb);
s = mrb_funcall(mrb, mrb_obj_value(mrb->exc), "inspect", 0);
if (mrb_string_p(s)) {