Skip to content

Commit 2576d56

Browse files
committed
follow up #115
1 parent 54f6697 commit 2576d56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ Advance the program counter without executing the corresponding line.
210210
If `frame` is finished, `nextpc` will be `nothing`.
211211
"""
212212
next_or_nothing(frame, pc) = pc < nstatements(frame.framecode) ? pc+1 : nothing
213-
next_or_nothing!(frame) = next_or_nothing(finish_and_return!, frame)
213+
next_or_nothing!(frame) = next_or_nothing!(finish_and_return!, frame)
214214
function next_or_nothing!(@nospecialize(recurse), frame)
215215
pc = frame.pc
216216
if pc < nstatements(frame.framecode)

0 commit comments

Comments
 (0)