summaryrefslogtreecommitdiff
path: root/libguile/macros.h
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2001-03-12 14:34:44 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2001-03-12 14:34:44 +0000
commite11208ca72463ef39e25e81d0245637b2e586f60 (patch)
tree27b4d5fca49f90ab4f5c8395f3dd074c9c869430 /libguile/macros.h
parentd69947f7446701918df01f216e258705acf04cd4 (diff)
downloadguile-e11208ca72463ef39e25e81d0245637b2e586f60.tar.gz
* Cleaned up uses and definition of SCM_ASSYNT.
Diffstat (limited to 'libguile/macros.h')
-rw-r--r--libguile/macros.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/macros.h b/libguile/macros.h
index af7ee7014..bd22a7b38 100644
--- a/libguile/macros.h
+++ b/libguile/macros.h
@@ -48,7 +48,8 @@
-#define SCM_ASSYNT(_cond, _arg, _pos, _subr) if(!(_cond))scm_wta(_arg, (char *)_pos, _subr);
+#define SCM_ASSYNT(_cond, _arg, _msg, _subr) \
+ if (!(_cond)) scm_misc_error (_subr, _msg, SCM_EOL);
extern scm_bits_t scm_tc16_macro;