diff options
author | aycabta <[email protected]> | 2019-05-28 03:25:31 +0900 |
---|---|---|
committer | aycabta <[email protected]> | 2019-05-28 03:25:47 +0900 |
commit | d5682eb9396c7813f50a1400f7e801d0058c6c6e (patch) | |
tree | 42b67b833ec78e18a019caf009165c8de582ca6f /lib/irb/completion.rb | |
parent | 5e275dd2af4d9d24cdb1cfc0f232f348dae9c2cd (diff) |
Remove unused variable from IRB::InputCompletor
Diffstat (limited to 'lib/irb/completion.rb')
-rw-r--r-- | lib/irb/completion.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/irb/completion.rb b/lib/irb/completion.rb index 5b36af23e4..a954b4e903 100644 --- a/lib/irb/completion.rb +++ b/lib/irb/completion.rb @@ -192,7 +192,6 @@ module IRB when /^(\$[^.]*)$/ # global var gvar = $1 - regmessage = all_gvars = global_variables.collect{|m| m.to_s} if doc_namespace all_gvars.find{ |i| i == gvar } |