luaur_vm/macros/
lua_g_forerror.rs1use crate::functions::lua_g_forerror_l::lua_g_forerror_l;
2
3#[allow(non_snake_case)]
4#[macro_export]
5macro_rules! luaG_forerror {
6 ($l:expr, $o:expr, $what:expr) => {{
7 $crate::functions::lua_g_forerror_l::lua_g_forerror_l($l, $o, $what);
8 }};
9}
10
11pub use luaG_forerror;