We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
::REPLDisplay == ::REPLDisplay
1 parent 4995d3f commit 9122376Copy full SHA for 9122376
stdlib/REPL/src/REPL.jl
@@ -248,12 +248,10 @@ function repl_backend_loop(backend::REPLBackend, get_module::Function)
248
return nothing
249
end
250
251
-struct REPLDisplay{R<:AbstractREPL} <: AbstractDisplay
252
- repl::R
+struct REPLDisplay{Repl<:AbstractREPL} <: AbstractDisplay
+ repl::Repl
253
254
255
-==(a::REPLDisplay, b::REPLDisplay) = a.repl === b.repl
256
-
257
function display(d::REPLDisplay, mime::MIME"text/plain", x)
258
x = Ref{Any}(x)
259
with_repl_linfo(d.repl) do io
0 commit comments