summaryrefslogtreecommitdiffstats
path: root/variable.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-26 05:25:08 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-26 05:25:08 +0000
commit7b6faae22e4e38167ad8ab6733dbc1beacd2ffa1 (patch)
tree74b2f2b99629231ad8cfddea87da2157ccd6ccf3 /variable.c
parent331b98144d7ed54aca26db06e421df044824447a (diff)
downloadruby-7b6faae22e4e38167ad8ab6733dbc1beacd2ffa1.tar.gz
ruby-7b6faae22e4e38167ad8ab6733dbc1beacd2ffa1.tar.xz
ruby-7b6faae22e4e38167ad8ab6733dbc1beacd2ffa1.zip
* removed spaces just before tabs.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/variable.c b/variable.c
index 779a8e828..b3f62444d 100644
--- a/variable.c
+++ b/variable.c
@@ -784,7 +784,7 @@ rb_alias_variable(ID name1, ID name2)
entry2 = rb_global_entry(name2);
if (!st_lookup(rb_global_tbl, (st_data_t)name1, &data1)) {
- entry1 = ALLOC(struct global_entry);
+ entry1 = ALLOC(struct global_entry);
entry1->id = name1;
st_add_direct(rb_global_tbl, name1, (st_data_t)entry1);
}