summaryrefslogtreecommitdiff
path: root/lib/irb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/irb')
-rw-r--r--lib/irb/cmd/chws.rb4
-rw-r--r--lib/irb/cmd/fork.rb6
-rw-r--r--lib/irb/cmd/help.rb4
-rw-r--r--lib/irb/cmd/load.rb4
-rw-r--r--lib/irb/cmd/nop.rb6
-rw-r--r--lib/irb/cmd/pushws.rb4
-rw-r--r--lib/irb/cmd/subirb.rb4
-rw-r--r--lib/irb/completion.rb6
-rw-r--r--lib/irb/context.rb4
-rw-r--r--lib/irb/ext/change-ws.rb4
-rw-r--r--lib/irb/ext/history.rb6
-rw-r--r--lib/irb/ext/loader.rb6
-rw-r--r--lib/irb/ext/math-mode.rb4
-rw-r--r--lib/irb/ext/multi-irb.rb6
-rw-r--r--lib/irb/ext/save-history.rb6
-rw-r--r--lib/irb/ext/tracer.rb4
-rw-r--r--lib/irb/ext/use-loader.rb4
-rw-r--r--lib/irb/ext/workspaces.rb4
-rw-r--r--lib/irb/extend-command.rb4
-rw-r--r--lib/irb/frame.rb4
-rw-r--r--lib/irb/help.rb4
-rw-r--r--lib/irb/init.rb4
-rw-r--r--lib/irb/input-method.rb6
-rw-r--r--lib/irb/lc/error.rb4
-rw-r--r--lib/irb/lc/help-message4
-rw-r--r--lib/irb/lc/ja/error.rb4
-rw-r--r--lib/irb/lc/ja/help-message4
-rw-r--r--lib/irb/locale.rb6
-rw-r--r--lib/irb/notifier.rb4
-rw-r--r--lib/irb/output-method.rb6
-rw-r--r--lib/irb/ruby-lex.rb6
-rw-r--r--lib/irb/ruby-token.rb4
-rw-r--r--lib/irb/slex.rb6
-rw-r--r--lib/irb/version.rb4
-rw-r--r--lib/irb/workspace.rb4
-rw-r--r--lib/irb/ws-for-case-2.rb4
-rw-r--r--lib/irb/xmp.rb6
37 files changed, 87 insertions, 87 deletions
diff --git a/lib/irb/cmd/chws.rb b/lib/irb/cmd/chws.rb
index 88585b778b..63be940f7a 100644
--- a/lib/irb/cmd/chws.rb
+++ b/lib/irb/cmd/chws.rb
@@ -1,8 +1,8 @@
#
# change-ws.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.1.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/cmd/fork.rb b/lib/irb/cmd/fork.rb
index 2866b1373b..67dee460f1 100644
--- a/lib/irb/cmd/fork.rb
+++ b/lib/irb/cmd/fork.rb
@@ -1,8 +1,8 @@
#
# fork.rb -
# $Release Version: 0.9.5 $
-# $Revision$
-# $Date$
+# $Revision: 1.2.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
@@ -10,7 +10,7 @@
#
#
-@RCS_ID='-$Id$-'
+@RCS_ID='-$Id: fork.rb,v 1.2.2.1 2005/04/19 19:24:58 keiju Exp $-'
module IRB
diff --git a/lib/irb/cmd/help.rb b/lib/irb/cmd/help.rb
index 3e8d1388e0..578d9e63a6 100644
--- a/lib/irb/cmd/help.rb
+++ b/lib/irb/cmd/help.rb
@@ -1,8 +1,8 @@
#
# help.rb - helper using ri
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.2.4.1 $
+# $Date: 2005/04/19 19:24:58 $
#
# --
#
diff --git a/lib/irb/cmd/load.rb b/lib/irb/cmd/load.rb
index cbc5d91d03..aec5d8a391 100644
--- a/lib/irb/cmd/load.rb
+++ b/lib/irb/cmd/load.rb
@@ -1,8 +1,8 @@
#
# load.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.1.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/cmd/nop.rb b/lib/irb/cmd/nop.rb
index aa553c959e..f0e786e8d4 100644
--- a/lib/irb/cmd/nop.rb
+++ b/lib/irb/cmd/nop.rb
@@ -1,8 +1,8 @@
#
# nop.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.1.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
@@ -13,7 +13,7 @@ module IRB
module ExtendCommand
class Nop
- @RCS_ID='-$Id$-'
+ @RCS_ID='-$Id: nop.rb,v 1.1.2.1 2005/04/19 19:24:58 keiju Exp $-'
def self.execute(conf, *opts)
command = new(conf)
diff --git a/lib/irb/cmd/pushws.rb b/lib/irb/cmd/pushws.rb
index eddaeae631..7acfee094f 100644
--- a/lib/irb/cmd/pushws.rb
+++ b/lib/irb/cmd/pushws.rb
@@ -1,8 +1,8 @@
#
# change-ws.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.1.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/cmd/subirb.rb b/lib/irb/cmd/subirb.rb
index 79d654b172..3ea9db33a0 100644
--- a/lib/irb/cmd/subirb.rb
+++ b/lib/irb/cmd/subirb.rb
@@ -2,8 +2,8 @@
#
# multi.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.1.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/completion.rb b/lib/irb/completion.rb
index 000658e2a3..49fb4556fa 100644
--- a/lib/irb/completion.rb
+++ b/lib/irb/completion.rb
@@ -1,8 +1,8 @@
#
# irb/completor.rb -
# $Release Version: 0.9$
-# $Revision$
-# $Date$
+# $Revision: 1.8.2.3 $
+# $Date: 2006/07/19 15:08:56 $
# by Keiju ISHITSUKA(keiju@ishitsuka.com)
# From Original Idea of shugo@ruby-lang.org
#
@@ -12,7 +12,7 @@ require "readline"
module IRB
module InputCompletor
- @RCS_ID='-$Id$-'
+ @RCS_ID='-$Id: completion.rb,v 1.8.2.3 2006/07/19 15:08:56 keiju Exp $-'
ReservedWords = [
"BEGIN", "END",
diff --git a/lib/irb/context.rb b/lib/irb/context.rb
index d01bd4aefa..c82be24db1 100644
--- a/lib/irb/context.rb
+++ b/lib/irb/context.rb
@@ -1,8 +1,8 @@
#
# irb/context.rb - irb context
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.8.2.3 $
+# $Date: 2005/07/31 15:10:26 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/ext/change-ws.rb b/lib/irb/ext/change-ws.rb
index fff8f58fe5..d75fe485c8 100644
--- a/lib/irb/ext/change-ws.rb
+++ b/lib/irb/ext/change-ws.rb
@@ -1,8 +1,8 @@
#
# irb/ext/cb.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.1.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/ext/history.rb b/lib/irb/ext/history.rb
index 40f8692e8b..2354ca96f7 100644
--- a/lib/irb/ext/history.rb
+++ b/lib/irb/ext/history.rb
@@ -1,8 +1,8 @@
#
# history.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.1.2.2 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
@@ -49,7 +49,7 @@ module IRB
end
class History
- @RCS_ID='-$Id$-'
+ @RCS_ID='-$Id: history.rb,v 1.1.2.2 2005/04/19 19:24:58 keiju Exp $-'
def initialize(size = 16)
@size = size
diff --git a/lib/irb/ext/loader.rb b/lib/irb/ext/loader.rb
index 837e2553ac..67fdc31c8e 100644
--- a/lib/irb/ext/loader.rb
+++ b/lib/irb/ext/loader.rb
@@ -1,8 +1,8 @@
#
# loader.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.1.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
@@ -15,7 +15,7 @@ module IRB
class LoadAbort < Exception;end
module IrbLoader
- @RCS_ID='-$Id$-'
+ @RCS_ID='-$Id: loader.rb,v 1.1.2.1 2005/04/19 19:24:58 keiju Exp $-'
alias ruby_load load
alias ruby_require require
diff --git a/lib/irb/ext/math-mode.rb b/lib/irb/ext/math-mode.rb
index bd443b96ed..dfb01f8202 100644
--- a/lib/irb/ext/math-mode.rb
+++ b/lib/irb/ext/math-mode.rb
@@ -1,8 +1,8 @@
#
# math-mode.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.2.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/ext/multi-irb.rb b/lib/irb/ext/multi-irb.rb
index 4589b1d554..946840fd40 100644
--- a/lib/irb/ext/multi-irb.rb
+++ b/lib/irb/ext/multi-irb.rb
@@ -1,8 +1,8 @@
#
# irb/multi-irb.rb - multiple irb module
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.2.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
@@ -15,7 +15,7 @@ require "thread"
module IRB
# job management class
class JobManager
- @RCS_ID='-$Id$-'
+ @RCS_ID='-$Id: multi-irb.rb,v 1.2.2.1 2005/04/19 19:24:58 keiju Exp $-'
def initialize
# @jobs = [[thread, irb],...]
diff --git a/lib/irb/ext/save-history.rb b/lib/irb/ext/save-history.rb
index 5260bfcdd8..889d81d5be 100644
--- a/lib/irb/ext/save-history.rb
+++ b/lib/irb/ext/save-history.rb
@@ -2,8 +2,8 @@
#
# save-history.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.2.4.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKAkeiju@ruby-lang.org)
#
# --
@@ -15,7 +15,7 @@ require "readline"
module IRB
module HistorySavingAbility
- @RCS_ID='-$Id$-'
+ @RCS_ID='-$Id: save-history.rb,v 1.2.4.1 2005/04/19 19:24:58 keiju Exp $-'
end
class Context
diff --git a/lib/irb/ext/tracer.rb b/lib/irb/ext/tracer.rb
index 805f630a4d..8660bfed17 100644
--- a/lib/irb/ext/tracer.rb
+++ b/lib/irb/ext/tracer.rb
@@ -1,8 +1,8 @@
#
# irb/lib/tracer.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.1.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/ext/use-loader.rb b/lib/irb/ext/use-loader.rb
index 1b4d480fcd..68bd1dd592 100644
--- a/lib/irb/ext/use-loader.rb
+++ b/lib/irb/ext/use-loader.rb
@@ -1,8 +1,8 @@
#
# use-loader.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.1.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/ext/workspaces.rb b/lib/irb/ext/workspaces.rb
index 79098570dc..b09e52ca34 100644
--- a/lib/irb/ext/workspaces.rb
+++ b/lib/irb/ext/workspaces.rb
@@ -1,8 +1,8 @@
#
# push-ws.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.1.2.1 $
+# $Date: 2005/04/19 19:24:58 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/extend-command.rb b/lib/irb/extend-command.rb
index 8994f2f8d2..934f9f6fbb 100644
--- a/lib/irb/extend-command.rb
+++ b/lib/irb/extend-command.rb
@@ -1,8 +1,8 @@
#
# irb/extend-command.rb - irb extend command
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.4.2.3 $
+# $Date: 2006/08/08 15:16:21 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/frame.rb b/lib/irb/frame.rb
index f0b0a9abf3..a6f15d23e9 100644
--- a/lib/irb/frame.rb
+++ b/lib/irb/frame.rb
@@ -1,8 +1,8 @@
#
# frame.rb -
# $Release Version: 0.9$
-# $Revision$
-# $Date$
+# $Revision: 1.4 $
+# $Date: 2002/07/09 11:17:16 $
# by Keiju ISHITSUKA(Nihon Rational Software Co.,Ltd)
#
# --
diff --git a/lib/irb/help.rb b/lib/irb/help.rb
index f091999bd1..e239fdda4c 100644
--- a/lib/irb/help.rb
+++ b/lib/irb/help.rb
@@ -1,8 +1,8 @@
#
# irb/help.rb - print usase module
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.2.2.1 $
+# $Date: 2005/04/19 19:24:57 $
# by Keiju ISHITSUKA(keiju@ishitsuka.com)
#
# --
diff --git a/lib/irb/init.rb b/lib/irb/init.rb
index db22ca639b..938e6e3d29 100644
--- a/lib/irb/init.rb
+++ b/lib/irb/init.rb
@@ -1,8 +1,8 @@
#
# irb/init.rb - irb initialize module
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.6.2.6 $
+# $Date: 2006/08/04 10:15:49 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/input-method.rb b/lib/irb/input-method.rb
index bfb90fa59a..d6abadba76 100644
--- a/lib/irb/input-method.rb
+++ b/lib/irb/input-method.rb
@@ -1,8 +1,8 @@
#
# irb/input-method.rb - input methods used irb
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.4.2.2 $
+# $Date: 2005/05/25 13:53:41 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
@@ -18,7 +18,7 @@ module IRB
#
STDIN_FILE_NAME = "(line)"
class InputMethod
- @RCS_ID='-$Id$-'
+ @RCS_ID='-$Id: input-method.rb,v 1.4.2.2 2005/05/25 13:53:41 shugo Exp $-'
def initialize(file = STDIN_FILE_NAME)
@file_name = file
diff --git a/lib/irb/lc/error.rb b/lib/irb/lc/error.rb
index 247596b7fe..54420e3508 100644
--- a/lib/irb/lc/error.rb
+++ b/lib/irb/lc/error.rb
@@ -1,8 +1,8 @@
#
# irb/lc/error.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.5.2.1 $
+# $Date: 2005/04/19 19:24:59 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/lc/help-message b/lib/irb/lc/help-message
index 32087d113c..f33d95e543 100644
--- a/lib/irb/lc/help-message
+++ b/lib/irb/lc/help-message
@@ -1,8 +1,8 @@
#
# irb/lc/help-message.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.4.2.2 $
+# $Date: 2005/04/19 19:24:59 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/lc/ja/error.rb b/lib/irb/lc/ja/error.rb
index 4c2fb3b839..25f8af68e0 100644
--- a/lib/irb/lc/ja/error.rb
+++ b/lib/irb/lc/ja/error.rb
@@ -1,8 +1,8 @@
#
# irb/lc/ja/error.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.5.2.1 $
+# $Date: 2005/04/19 19:24:59 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/lc/ja/help-message b/lib/irb/lc/ja/help-message
index debbfe9355..606f9e8984 100644
--- a/lib/irb/lc/ja/help-message
+++ b/lib/irb/lc/ja/help-message
@@ -1,8 +1,8 @@
#
# irb/lc/ja/help-message.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.3.2.2 $
+# $Date: 2005/04/19 19:24:59 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/locale.rb b/lib/irb/locale.rb
index 4b6aba2bb9..1f4f9f67d8 100644
--- a/lib/irb/locale.rb
+++ b/lib/irb/locale.rb
@@ -1,8 +1,8 @@
#
# irb/locale.rb - internationalization module
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.6.2.3 $
+# $Date: 2005/09/01 18:30:46 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
@@ -14,7 +14,7 @@ autoload :Kconv, "kconv"
module IRB
class Locale
- @RCS_ID='-$Id$-'
+ @RCS_ID='-$Id: locale.rb,v 1.6.2.3 2005/09/01 18:30:46 keiju Exp $-'
JPDefaultLocale = "ja"
LOCALE_DIR = "/lc/"
diff --git a/lib/irb/notifier.rb b/lib/irb/notifier.rb
index c8e66fa859..b03f445873 100644
--- a/lib/irb/notifier.rb
+++ b/lib/irb/notifier.rb
@@ -1,8 +1,8 @@
#
# notifier.rb - optput methods used by irb
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.2.4.1 $
+# $Date: 2005/04/19 19:24:57 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/output-method.rb b/lib/irb/output-method.rb
index b9a3a8851e..01bfefb5af 100644
--- a/lib/irb/output-method.rb
+++ b/lib/irb/output-method.rb
@@ -1,8 +1,8 @@
#
# output-method.rb - optput methods used by irb
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.2.4.1 $
+# $Date: 2005/04/19 19:24:57 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
@@ -17,7 +17,7 @@ module IRB
# StdioOutputMethod
class OutputMethod
- @RCS_ID='-$Id$-'
+ @RCS_ID='-$Id: output-method.rb,v 1.2.4.1 2005/04/19 19:24:57 keiju Exp $-'
def print(*opts)
IRB.fail NotImplementError, "print"
diff --git a/lib/irb/ruby-lex.rb b/lib/irb/ruby-lex.rb
index ab584d5253..6310fb626b 100644
--- a/lib/irb/ruby-lex.rb
+++ b/lib/irb/ruby-lex.rb
@@ -1,8 +1,8 @@
#
# irb/ruby-lex.rb - ruby lexcal analizer
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.22.2.6 $
+# $Date: 2006/08/04 10:15:49 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
@@ -15,7 +15,7 @@ require "irb/slex"
require "irb/ruby-token"
class RubyLex
- @RCS_ID='-$Id$-'
+ @RCS_ID='-$Id: ruby-lex.rb,v 1.22.2.6 2006/08/04 10:15:49 keiju Exp $-'
extend Exception2MessageMapper
def_exception(:AlreadyDefinedToken, "Already defined token(%s)")
diff --git a/lib/irb/ruby-token.rb b/lib/irb/ruby-token.rb
index 525d4df14c..4d56754d36 100644
--- a/lib/irb/ruby-token.rb
+++ b/lib/irb/ruby-token.rb
@@ -1,8 +1,8 @@
#
# irb/ruby-token.rb - ruby tokens
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.5.2.1 $
+# $Date: 2005/04/19 19:24:57 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/slex.rb b/lib/irb/slex.rb
index a6ea6fb473..ed99e8fc86 100644
--- a/lib/irb/slex.rb
+++ b/lib/irb/slex.rb
@@ -1,8 +1,8 @@
#
# irb/slex.rb - symple lex analizer
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.6.2.3 $
+# $Date: 2005/04/19 19:24:57 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
@@ -15,7 +15,7 @@ require "irb/notifier"
module IRB
class SLex
- @RCS_ID='-$Id$-'
+ @RCS_ID='-$Id: slex.rb,v 1.6.2.3 2005/04/19 19:24:57 keiju Exp $-'
extend Exception2MessageMapper
def_exception :ErrNodeNothing, "node nothing"
diff --git a/lib/irb/version.rb b/lib/irb/version.rb
index 28b079740a..95192669db 100644
--- a/lib/irb/version.rb
+++ b/lib/irb/version.rb
@@ -1,8 +1,8 @@
#
# irb/version.rb - irb version definition file
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.4.2.1 $
+# $Date: 2005/04/19 19:24:57 $
# by Keiju ISHITSUKA(keiju@ishitsuka.com)
#
# --
diff --git a/lib/irb/workspace.rb b/lib/irb/workspace.rb
index 7d1794cd7b..364820f997 100644
--- a/lib/irb/workspace.rb
+++ b/lib/irb/workspace.rb
@@ -1,8 +1,8 @@
#
# irb/workspace-binding.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.5.2.2 $
+# $Date: 2005/04/19 19:24:57 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/ws-for-case-2.rb b/lib/irb/ws-for-case-2.rb
index afd49d23e1..ca30eb34c0 100644
--- a/lib/irb/ws-for-case-2.rb
+++ b/lib/irb/ws-for-case-2.rb
@@ -1,8 +1,8 @@
#
# irb/ws-for-case-2.rb -
# $Release Version: 0.9.5$
-# $Revision$
-# $Date$
+# $Revision: 1.2.2.1 $
+# $Date: 2005/04/19 19:24:57 $
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
#
# --
diff --git a/lib/irb/xmp.rb b/lib/irb/xmp.rb
index 4bcc2ca22f..0a0883245b 100644
--- a/lib/irb/xmp.rb
+++ b/lib/irb/xmp.rb
@@ -1,8 +1,8 @@
#
# xmp.rb - irb version of gotoken xmp
# $Release Version: 0.9$
-# $Revision$
-# $Date$
+# $Revision: 1.3 $
+# $Date: 2002/07/09 11:17:16 $
# by Keiju ISHITSUKA(Nippon Rational Inc.)
#
# --
@@ -14,7 +14,7 @@ require "irb"
require "irb/frame"
class XMP
- @RCS_ID='-$Id$-'
+ @RCS_ID='-$Id: xmp.rb,v 1.3 2002/07/09 11:17:16 keiju Exp $-'
def initialize(bind = nil)
IRB.init_config(nil)