Skip to content

Commit b59de9a

Browse files
committed
fix chain call for ruby 1.8
1 parent 62f44c6 commit b59de9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/ruby-debug-ide/command.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ def options
6666
end
6767

6868
def unescape_incoming(str)
69-
str.gsub(/((?:^|[^\\])(?:\\\\)*)\\n/, "\\1\n")
70-
.gsub(/\\\\/, '\\')
69+
str.gsub(/((?:^|[^\\])(?:\\\\)*)\\n/, "\\1\n").
70+
gsub(/\\\\/, '\\')
7171
end
7272
end
7373

0 commit comments

Comments
 (0)