From 08b3f60e5746f4b68dbed09a6305414a4c398d2f Mon Sep 17 00:00:00 2001 From: yugui Date: Fri, 22 May 2009 09:48:14 +0000 Subject: merges r23439 from trunk into ruby_1_9_1. -- * sample/drb/dhasenc.rb: add magic comment for encoding. * sample/mine.rb: ditto. * ext/tk/sample/tcltklib/sample1.rb: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@23527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 8 ++++++++ ext/tk/sample/tcltklib/sample1.rb | 2 +- sample/drb/dhasenc.rb | 1 + sample/mine.rb | 1 + version.h | 2 +- 5 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e4ad5578d..6a79ead29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Sat May 16 10:59:54 2009 Yukihiro Matsumoto + + * sample/drb/dhasenc.rb: add magic comment for encoding. + + * sample/mine.rb: ditto. + + * ext/tk/sample/tcltklib/sample1.rb: ditto. + Fri May 15 15:15:12 2009 Nobuyoshi Nakada * variable.c (rb_autoload_load): checks if iv_tbl is valid. diff --git a/ext/tk/sample/tcltklib/sample1.rb b/ext/tk/sample/tcltklib/sample1.rb index 13df44075..196578153 100644 --- a/ext/tk/sample/tcltklib/sample1.rb +++ b/ext/tk/sample/tcltklib/sample1.rb @@ -1,5 +1,5 @@ #! /usr/local/bin/ruby -d -#! /usr/local/bin/ruby +# -*- encoding: euc-jp -*- # -d オプションを付けると, デバッグ情報を表示する. # tcltk ライブラリのサンプル diff --git a/sample/drb/dhasenc.rb b/sample/drb/dhasenc.rb index 8114e9228..2774feba5 100644 --- a/sample/drb/dhasenc.rb +++ b/sample/drb/dhasenc.rb @@ -1,3 +1,4 @@ +# -*- encoding: euc-jp -*- =begin distributed Ruby --- dRuby Sample Client -- chasen client Copyright (c) 1999-2001 Masatoshi SEKI diff --git a/sample/mine.rb b/sample/mine.rb index 8fc27e0c6..4ef006685 100644 --- a/sample/mine.rb +++ b/sample/mine.rb @@ -1,4 +1,5 @@ #! /usr/bin/ruby -Ke +# -*- encoding: euc-jp -*- class Board def clr diff --git a/version.h b/version.h index 9f9a20b6c..72fff2eae 100644 --- a/version.h +++ b/version.h @@ -1,6 +1,6 @@ #define RUBY_VERSION "1.9.1" #define RUBY_RELEASE_DATE "2009-05-12" -#define RUBY_PATCHLEVEL 141 +#define RUBY_PATCHLEVEL 142 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 9 #define RUBY_VERSION_TEENY 1 -- cgit