author | Camm Maguire <camm@debian.org> | 2014年09月19日 13:40:35 -0400 |
---|---|---|
committer | Camm Maguire <camm@debian.org> | 2014年09月19日 13:40:35 -0400 |
commit | 50054667f7b448582bb6516226285b57a7c017cc (patch) | |
tree | 72d47dce31fe8b239f339422e348a2adc241e0aa | |
parent | 22a32b31dc4344ffc9168c990fe6a018840cd82c (diff) | |
download | gcl-50054667f7b448582bb6516226285b57a7c017cc.tar.gz |
-rwxr-xr-x | gcl/o/error.c | 12 |
diff --git a/gcl/o/error.c b/gcl/o/error.c index 791c765a8..d89d18e38 100755 --- a/gcl/o/error.c +++ b/gcl/o/error.c @@ -433,16 +433,12 @@ static ihs_ptr get_ihs_ptr(object x) { } -DEFUNO_NEW("IHS-TOP",object,fSihs_top,SI - ,0,0,NONE,OO,OO,OO,OO,static void,siLihs_top,(void),"") - -{ +DEFUN_NEW("IHS-TOP",object,fSihs_top,SI,0,0,NONE,OO,OO,OO,OO,(void),"") { /* 0 args */ -RETURN1(make_fixnum(ihs_top - ihs_org)); + RETURN1(make_fixnum(ihs_top - ihs_org)); } -DEFUN_NEW("IHS-FUN",object,fSihs_fun,SI - ,1,1,NONE,OO,OO,OO,OO,(object x0),"") +DEFUN_NEW("IHS-FUN",object,fSihs_fun,SI,1,1,NONE,OO,OO,OO,OO,(object x0),"") { /* 1 args */ x0 = get_ihs_ptr(x0)->ihs_function; @@ -830,7 +826,7 @@ gcl_init_error(void) { make_function("ERROR", Lerror); make_function("CERROR", Lcerror); - make_si_function("IHS-TOP", siLihs_top); + /* make_si_function("IHS-TOP", siLihs_top); */ null_string = make_simple_string(""); enter_mark_origin(&null_string); } |