diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1999-09-16 09:40:33 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1999-09-16 09:40:33 +0000 |
commit | 9e3d9a2a009d2a0281802a84e1c5cc1c887edc71 (patch) | |
tree | ea994af7deeef43977f60a9ab26131e8cd90a9a0 /sample/cal.rb | |
parent | 69a3aaf154948d653fa3653cd2b3c3b3af979769 (diff) | |
download | ruby-9e3d9a2a009d2a0281802a84e1c5cc1c887edc71.tar.gz |
1.4.1
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/cal.rb')
-rw-r--r-- | sample/cal.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sample/cal.rb b/sample/cal.rb index cf82c6421c..8eea4abfdb 100644 --- a/sample/cal.rb +++ b/sample/cal.rb @@ -1,7 +1,7 @@ #! /usr/local/bin/ruby # cal.rb: Written by Tadayoshi Funaba 1998, 1999 -# $Id: cal.rb,v 1.5 1999/08/04 14:54:18 tadf Exp $ +# $Id: cal.rb,v 1.6 1999/09/15 05:35:25 tadf Exp $ require 'date2' @@ -39,7 +39,7 @@ def cal(m, y, sg) for d in 1..31 break if jd = Date.exist?(y, m, d, sg) end - fst = cur = Date.new(jd, sg) + fst = cur = Date.new1(jd, sg) ti = Date::MONTHNAMES[m] ti << ' ' << y.to_s unless $yr mo = ti.center((($w + 1) * 7) - 1) << "\n" |