Basic support for lisp functions
This commit is contained in:
@ -12,6 +12,9 @@ static LispFunction _Ftoplevel_exit_handler_function = {
|
||||
.builtin = &Ftoplevel_exit_handler,
|
||||
.args = Qnil,
|
||||
.kwargs = Qnil,
|
||||
.rargs = Qnil,
|
||||
.oargs = Qnil,
|
||||
.rest_arg = Qnil,
|
||||
.lexenv = Qnil,
|
||||
};
|
||||
#define Ftoplevel_exit_handler_function \
|
||||
@ -38,6 +41,9 @@ static LispFunction _Ftoplevel_error_handler_function = {
|
||||
.args = Qnil,
|
||||
.kwargs = Qnil,
|
||||
.lexenv = Qnil,
|
||||
.rargs = Qnil,
|
||||
.oargs = Qnil,
|
||||
.rest_arg = Qnil,
|
||||
};
|
||||
#define Ftoplevel_error_handler_function \
|
||||
LISPVAL(&_Ftoplevel_error_handler_function)
|
||||
|
Reference in New Issue
Block a user