Skip to content

Commit d83e56d

Browse files
committed
do not evaluate on 1.9
1 parent fa4d97e commit d83e56d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ruby-debug-ide/commands/variables.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def execute
3838
if RUBY_VERSION < "1.9"
3939
globals = global_variables - ['$=', '$IGNORECASE']
4040
else
41-
globals = global_variables - [:$KCODE, :$-K, :$=, :$FILENAME]
41+
globals = global_variables - [:$KCODE, :$-K, :$=, :$IGNORECASE, :$FILENAME]
4242
end
4343
print_variables(globals, 'global') do |var|
4444
debug_eval(var)

0 commit comments

Comments
 (0)