diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2001-03-04 17:09:34 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2001-03-04 17:09:34 +0000 |
commit | db4b4ca64f0480198cbc82e0f6fb3d3a8af5f580 (patch) | |
tree | 8b0dbb8c8df3ccd03143f208c19c9acb19831ef1 /libguile/options.c | |
parent | cc6c7feea443b5d5f95d2cc88e0b244ccf15b373 (diff) | |
download | guile-db4b4ca64f0480198cbc82e0f6fb3d3a8af5f580.tar.gz |
* Eliminate some calls to scm_wta.
Diffstat (limited to 'libguile/options.c')
-rw-r--r-- | libguile/options.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/options.c b/libguile/options.c index 94e74d573..5bd622d30 100644 --- a/libguile/options.c +++ b/libguile/options.c @@ -190,7 +190,8 @@ scm_options (SCM arg, scm_option options[], int n, const char *s) } #ifndef SCM_RECKLESS scm_must_free ((char *) flags); - scm_wta (SCM_CAR (new_mode), "Unknown mode flag", s); + scm_misc_error (s, "Unknown mode flag: ~S", + SCM_LIST1 (SCM_CAR (new_mode))); #endif cont: new_mode = SCM_CDR (new_mode); |