author | Camm Maguire <camm@debian.org> | 2003年10月19日 02:25:43 +0000 |
---|---|---|
committer | Camm Maguire <camm@debian.org> | 2003年10月19日 02:25:43 +0000 |
commit | b69115ef693183f00c5edcd79c5c7ed25f48e563 (patch) | |
tree | c04cecf109358f3bd39991fbe2604a7c8fcbbd02 | |
parent | 627e097e29ea57ed27364b54cdc0678c4846e82b (diff) | |
download | gcl-b69115ef693183f00c5edcd79c5c7ed25f48e563.tar.gz |
-rw-r--r-- | gcl/debian/changelog | 3 | ||||
-rw-r--r-- | gcl/xgcl-2/sysinit.lsp | 2 |
diff --git a/gcl/debian/changelog b/gcl/debian/changelog index 724154dea..35a630c71 100644 --- a/gcl/debian/changelog +++ b/gcl/debian/changelog @@ -1,8 +1,9 @@ gcl (2.6.1-16) unstable; urgency=low * Fix sh syntax in debian/gcl.sh + * init_or_load1 -> gcl_init_or_load1 in xgcl-2/sysinit.lsp - -- Camm Maguire <camm@intech.m.enhanced.com> 2003年10月18日 22:22:31 -0400 + -- Camm Maguire <camm@intech.m.enhanced.com> 2003年10月18日 22:24:34 -0400 gcl (2.6.1-15) unstable; urgency=low diff --git a/gcl/xgcl-2/sysinit.lsp b/gcl/xgcl-2/sysinit.lsp index 78ad62604..a65fc863a 100644 --- a/gcl/xgcl-2/sysinit.lsp +++ b/gcl/xgcl-2/sysinit.lsp @@ -31,7 +31,7 @@ ;;define a function USER::USER-INIT, which will run the init code for a set ;;of files which are linked into an image. -(clines "#define init_or_load(fn,file) do {extern void fn(void); init_or_load1(fn,file);} while(0)") +(clines "#define init_or_load(fn,file) do {extern void fn(void); gcl_init_or_load1(fn,file);} while(0)") (clines "static void") (clines "load1(char *x) {") (clines "printf(\"loading %s\\n\",x);") |