diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-05-16 12:11:08 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-05-16 12:11:08 +0000 |
commit | 56100716270fae40cfa71a69c45a2ed03f2510da (patch) | |
tree | 3f665f188e7f5339bb1e909019233afde2b4aa41 /libguile/gdbint.c | |
parent | 3c9f20f849ad67b8ba6f35b6f0eca2cde1c3e103 (diff) | |
download | guile-56100716270fae40cfa71a69c45a2ed03f2510da.tar.gz |
* Makefile.am: Let 'make clean' remove *.x and *.doc files.
* Renamed SCM_STRICT_TYPING to SCM_DEBUG_TYPING_STRICTNESS.
* Removed conditionally compiled code for Turbo C.
* gdbint.c: Eliminated call to scm_tag.
Diffstat (limited to 'libguile/gdbint.c')
-rw-r--r-- | libguile/gdbint.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libguile/gdbint.c b/libguile/gdbint.c index 3c2c90450..3bdb7c7a5 100644 --- a/libguile/gdbint.c +++ b/libguile/gdbint.c @@ -168,9 +168,7 @@ remark_port (SCM port) int gdb_maybe_valid_type_p (SCM value) { - if (SCM_IMP (value) || scm_cellp (value)) - return (! SCM_EQ_P (scm_tag (value), SCM_MAKINUM (-1))); - return 0; + return SCM_IMP (value) || scm_cellp (value); } |