summaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-27 06:55:06 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-27 06:55:06 +0000
commitcf9159afdd5151aec31a15ccf39e245b342933e4 (patch)
tree88dfee59eac2e8a0e26a18f71e4333bfe2637820 /io.c
parentcc770ff4a600872c9a7e7a921bcf281561e6c329 (diff)
downloadruby-cf9159afdd5151aec31a15ccf39e245b342933e4.tar.gz
ruby-cf9159afdd5151aec31a15ccf39e245b342933e4.tar.xz
ruby-cf9159afdd5151aec31a15ccf39e245b342933e4.zip
* io.c (argf_init): initial value of $. should be 0.
see [ruby-dev:36937]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19964 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index ff1c74a3e..6e76f23c8 100644
--- a/io.c
+++ b/io.c
@@ -5821,7 +5821,7 @@ argf_init(struct argf *p, VALUE v)
{
p->filename = Qnil;
p->current_file = Qnil;
- p->lineno = Qnil;
+ p->lineno = INT2FIX(0);
p->argv = v;
}