From 22e09d1e22901e45bf65b652a54983af8ad69637 Mon Sep 17 00:00:00 2001 From: zzak Date: Sat, 26 Jul 2014 20:13:03 +0000 Subject: [PATCH] * lib/irb.rb: [DOC] PROMPT_I cannot be nil, patch by @hgillane [ci skip] Fixes documenting-ruby/ruby#37 https://github.com/documenting-ruby/ruby/pull/37 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ lib/irb.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5abaccf8e8..01fcfcd2c5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sun Jul 27 05:11:21 2014 Zachary Scott + + * lib/irb.rb: [DOC] PROMPT_I cannot be nil, patch by @hgillane + Fixes documenting-ruby/ruby#37 + https://github.com/documenting-ruby/ruby/pull/37 + Sun Jul 27 02:41:50 2014 SHIBATA Hiroshi * lib/shell/command-processor.rb: remove unused variable. diff --git a/lib/irb.rb b/lib/irb.rb index 300ae97519..1874f234c6 100644 --- a/lib/irb.rb +++ b/lib/irb.rb @@ -139,7 +139,7 @@ STDOUT.sync = true # # IRB.conf[:PROMPT][:MY_PROMPT] = { # name of prompt mode # :AUTO_INDENT => true, # enables auto-indent mode -# :PROMPT_I => nil, # normal prompt +# :PROMPT_I => ">> ", # simple prompt # :PROMPT_S => nil, # prompt for continuated strings # :PROMPT_C => nil, # prompt for continuated statement # :RETURN => " ==>%s\n" # format to return value