diff options
author | Mark H Weaver <mhw@netris.org> | 2013-11-04 19:41:52 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2013-11-04 19:45:40 -0500 |
commit | 36c40440078c005cd5e239cca487d29f6f60007d (patch) | |
tree | 561f4ea67c4c08b6094e12fbdd6b2cb9851e9076 /libguile/throw.c | |
parent | b1fe20c24ccb380420ea1ffdc7f249224072dcdc (diff) | |
download | guile-36c40440078c005cd5e239cca487d29f6f60007d.tar.gz |
Don't use the identifier 'noreturn'.
Fixes <http://bugs.gnu.org/15798>.
Reported by Matt Sicker <boards@gmail.com>.
* libguile/__scm.h (SCM_NORETURN): Use ((__noreturn__)) instead of
((noreturn)).
* libguile/throw.h (scm_ithrow): Rename formal parameter from 'noreturn'
to 'no_return'.
* libguile/throw.c (scm_ithrow): Rename formal parameter from 'noreturn'
to 'no_return'.
Diffstat (limited to 'libguile/throw.c')
-rw-r--r-- | libguile/throw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/throw.c b/libguile/throw.c index 9c293516d..7fc9edff7 100644 --- a/libguile/throw.c +++ b/libguile/throw.c @@ -436,7 +436,7 @@ scm_handle_by_throw (void *handler_data SCM_UNUSED, SCM tag, SCM args) } SCM -scm_ithrow (SCM key, SCM args, int noreturn SCM_UNUSED) +scm_ithrow (SCM key, SCM args, int no_return SCM_UNUSED) { return scm_throw (key, args); } |