Skip to content

Commit 43ba294

Browse files
committed
unescape breakpoint condition
1 parent 0f58b1e commit 43ba294

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def execute
2323
return unless pos
2424
breakpoints.each do |b|
2525
if b.id == pos
26-
b.expr = @match[2].empty? ? nil : @match[2]
26+
b.expr = @match[2].empty? ? nil : Command.unescape_incoming(@match[2])
2727
print_contdition_set(b.id)
2828
break
2929
end

0 commit comments

Comments
 (0)