Skip to content

Commit fe2aed9

Browse files
committed
restore call_on_backend
1 parent b44f430 commit fe2aed9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

ext/AbbrvStackTracesREPLExt.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ if VERSION ≥ v"1.12-alpha"
2828
if val !== nothing && show_value
2929
val2, iserr = if specialdisplay === nothing
3030
# display calls may require being run on the main thread
31-
Base.invokelatest(display, val), false
31+
REPL.call_on_backend(backend) do
32+
Base.invokelatest(display, val)
33+
end
3234
else
3335
REPL.call_on_backend(backend) do
3436
Base.invokelatest(display, specialdisplay, val)

0 commit comments

Comments
 (0)