diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2002-01-22 23:31:39 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2002-01-22 23:31:39 +0000 |
commit | c96d76b88dcb7805311d14e6e408d064211fde20 (patch) | |
tree | 08d604bcf94ceb35dd271c4c46064ed60644f5b4 /libguile/throw.c | |
parent | 229d2c9c076d214457f4f6817f7d3c1db90ed994 (diff) | |
download | guile-c96d76b88dcb7805311d14e6e408d064211fde20.tar.gz |
* First batch of libguile changes for Elisp support.
* Fixed a few typos.
* Minor rationalization of macros relating to source breakpoints.
Diffstat (limited to 'libguile/throw.c')
-rw-r--r-- | libguile/throw.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/throw.c b/libguile/throw.c index 04c5263e1..91f07f61a 100644 --- a/libguile/throw.c +++ b/libguile/throw.c @@ -58,6 +58,7 @@ #include "libguile/stacks.h" #include "libguile/fluids.h" #include "libguile/ports.h" +#include "libguile/lang.h" #include "libguile/validate.h" #include "libguile/throw.h" @@ -401,7 +402,7 @@ scm_handle_by_proc_catching_all (void *handler_data, SCM tag, SCM throw_args) int scm_exit_status (SCM args) { - if (SCM_NNULLP (args)) + if (!SCM_NULL_OR_NIL_P (args)) { SCM cqa = SCM_CAR (args); |