diff options
author | aycabta <aycabta@gmail.com> | 2019-08-06 20:28:48 +0900 |
---|---|---|
committer | aycabta <aycabta@gmail.com> | 2019-08-06 20:28:48 +0900 |
commit | 43b52ac0a52807c415e9d24d25954f5055567c5e (patch) | |
tree | c22b2efe4c6d780bc7510e09f75d8885f9d415ab /lib/irb/context.rb | |
parent | 1ee88c51b3c319b74b69540e111e4a1c24833cad (diff) |
Revert "Don't echo results of assignment expressions"
This reverts commit 1ee88c51b3c319b74b69540e111e4a1c24833cad.
Diffstat (limited to 'lib/irb/context.rb')
-rw-r--r-- | lib/irb/context.rb | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/irb/context.rb b/lib/irb/context.rb index 5d2336008f..9544a8aa1a 100644 --- a/lib/irb/context.rb +++ b/lib/irb/context.rb @@ -121,11 +121,6 @@ module IRB if @echo.nil? @echo = true end - - @echo_on_assignment = IRB.conf[:ECHO_ON_ASSIGNMENT] - if @echo_on_assignment.nil? - @echo_on_assignment = false - end end # The top-level workspace, see WorkSpace#main @@ -241,15 +236,6 @@ module IRB # puts "omg" # # omg attr_accessor :echo - # Whether to echo for assignment expressions - # - # Uses IRB.conf[:ECHO_ON_ASSIGNMENT] if available, or defaults to +false+. - # - # a = "omg" - # IRB.CurrentContext.echo_on_assignment = true - # a = "omg" - # #=> omg - attr_accessor :echo_on_assignment # Whether verbose messages are displayed or not. # # A copy of the default <code>IRB.conf[:VERBOSE]</code> @@ -275,7 +261,6 @@ module IRB alias ignore_sigint? ignore_sigint alias ignore_eof? ignore_eof alias echo? echo - alias echo_on_assignment? echo_on_assignment # Returns whether messages are displayed or not. def verbose? |