From 4460a5e1605c1438043fc6004442c17c241f23e2 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 25 Sep 2009 23:45:52 +0000 Subject: [PATCH] * lib: updated keywords. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@25096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/getopts.rb | 2 +- lib/parsearg.rb | 2 +- lib/racc/parser.rb | 6 +++--- lib/sync.rb | 2 +- version.h | 6 +++--- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/getopts.rb b/lib/getopts.rb index be7bd76b75..7ff97c6ecd 100644 --- a/lib/getopts.rb +++ b/lib/getopts.rb @@ -17,7 +17,7 @@ warn "Warning:#{caller[0].sub(/:in `.*'\z/, '')+':' if caller[0]} getopts is deprecated after Ruby 1.8.1; use optparse instead" if caller[0] and $VERBOSE -$RCS_ID=%q$Header$ +$RCS_ID=%q$Id$ # getopts is obsolete. Use GetoptLong. diff --git a/lib/parsearg.rb b/lib/parsearg.rb index cab2dba789..8133858b93 100644 --- a/lib/parsearg.rb +++ b/lib/parsearg.rb @@ -12,7 +12,7 @@ warn "Warning:#{caller[0].sub(/:in `.*'\z/, '')}: parsearg is deprecated after Ruby 1.8.1; use optparse instead" -$RCS_ID=%q$Header$ +$RCS_ID=%q$Id$ require "getopts" diff --git a/lib/racc/parser.rb b/lib/racc/parser.rb index a7408dd00a..501ad36770 100644 --- a/lib/racc/parser.rb +++ b/lib/racc/parser.rb @@ -31,10 +31,10 @@ module Racc class Parser Racc_Runtime_Version = '1.4.5' - Racc_Runtime_Revision = '$originalRevision: 1.8 $'.split[1] + Racc_Runtime_Revision = %w$originalRevision: 1.8 $[1] Racc_Runtime_Core_Version_R = '1.4.5' - Racc_Runtime_Core_Revision_R = '$originalRevision: 1.8 $'.split[1] + Racc_Runtime_Core_Revision_R = %w$originalRevision: 1.8 $[1] begin require 'racc/cparse' # Racc_Runtime_Core_Version_C = (defined in extention) @@ -389,7 +389,7 @@ module Racc toks.each {|t| out.print ' ', racc_token2str(t) } end out.puts " --> #{racc_token2str(sim)}" - + racc_print_stacks tstack, vstack @racc_debug_out.puts end diff --git a/lib/sync.rb b/lib/sync.rb index 9e522c2466..c40ae2396f 100644 --- a/lib/sync.rb +++ b/lib/sync.rb @@ -44,7 +44,7 @@ unless defined? Thread end module Sync_m - RCS_ID='-$Header$-' + RCS_ID='-$Id$-' # lock mode UN = :UN diff --git a/version.h b/version.h index 9fc176fa1b..48c716d5bc 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.8.8" -#define RUBY_RELEASE_DATE "2009-09-25" +#define RUBY_RELEASE_DATE "2009-09-26" #define RUBY_VERSION_CODE 188 -#define RUBY_RELEASE_CODE 20090925 +#define RUBY_RELEASE_CODE 20090926 #define RUBY_PATCHLEVEL -1 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 8 #define RUBY_RELEASE_YEAR 2009 #define RUBY_RELEASE_MONTH 9 -#define RUBY_RELEASE_DAY 25 +#define RUBY_RELEASE_DAY 26 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[];