mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 22:42:48 +03:00
lua: suppress userdata is not expected type error in repl
When printing built-in-to-lua userdata, avoid tripping over an error message from mlua. refs: https://github.com/khvzak/mlua/issues/291 refs: https://github.com/wez/wezterm/issues/3849
This commit is contained in:
parent
c7ff432581
commit
523660c192
@ -411,9 +411,7 @@ impl<'lua> std::fmt::Debug for ValuePrinterHelper<'lua> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Err(err) => {
|
Err(_) => fmt.write_str("userdata"),
|
||||||
write!(fmt, "Error getting metatable: {err:#}")
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
LuaValue::LightUserData(_) => fmt.write_str("userdata"),
|
LuaValue::LightUserData(_) => fmt.write_str("userdata"),
|
||||||
LuaValue::Thread(_) => fmt.write_str("thread"),
|
LuaValue::Thread(_) => fmt.write_str("thread"),
|
||||||
|
Loading…
Reference in New Issue
Block a user