summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/irb/input-method.rb1
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 07266911fa..f3172cda34 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Dec 26 17:04:14 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
+
+ * lib/irb/input-method.rb (IRB::StdioInputMethod#initialize):
+ removed a 'p' for debugging.
+
Thu Dec 25 20:57:01 2008 NARUSE, Yui <naruse@ruby-lang.org>
* transcode.c (str_transcode0): set encoding when String#encode was
diff --git a/lib/irb/input-method.rb b/lib/irb/input-method.rb
index c4142a924e..407012aa86 100644
--- a/lib/irb/input-method.rb
+++ b/lib/irb/input-method.rb
@@ -51,7 +51,6 @@ module IRB
def gets
print @prompt
line = @stdin.gets
- p line.encoding
@line[@line_no += 1] = line
end