mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-14 08:17:35 +02:00
Removed Cyc_current_exception_handler2
This commit is contained in:
parent
02317f940d
commit
a9d575d3a9
2 changed files with 0 additions and 4 deletions
|
@ -369,7 +369,6 @@ extern object Cyc_exception_handler_stack;
|
||||||
|
|
||||||
object Cyc_default_exception_handler(void *data, int argc, closure _, object err);
|
object Cyc_default_exception_handler(void *data, int argc, closure _, object err);
|
||||||
object Cyc_current_exception_handler(void *data);
|
object Cyc_current_exception_handler(void *data);
|
||||||
object Cyc_current_exception_handler2(void *data); // TODO: this is temporary, will consolidate with above function
|
|
||||||
void Cyc_rt_raise(void *data, object err);
|
void Cyc_rt_raise(void *data, object err);
|
||||||
void Cyc_rt_raise2(void *data, const char *msg, object err);
|
void Cyc_rt_raise2(void *data, const char *msg, object err);
|
||||||
void Cyc_rt_raise_msg(void *data, const char *err);
|
void Cyc_rt_raise_msg(void *data, const char *err);
|
||||||
|
|
|
@ -371,9 +371,6 @@ object Cyc_default_exception_handler(void *data, int argc, closure _, object err
|
||||||
return nil;
|
return nil;
|
||||||
}
|
}
|
||||||
|
|
||||||
object Cyc_current_exception_handler2(void *data) {
|
|
||||||
return Cyc_current_exception_handler(data);
|
|
||||||
}
|
|
||||||
object Cyc_current_exception_handler(void *data) {
|
object Cyc_current_exception_handler(void *data) {
|
||||||
if (nullp(Cyc_exception_handler_stack)) {
|
if (nullp(Cyc_exception_handler_stack)) {
|
||||||
return primitive_Cyc_91default_91exception_91handler;
|
return primitive_Cyc_91default_91exception_91handler;
|
||||||
|
|
Loading…
Add table
Reference in a new issue