diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2002-10-03 22:23:43 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2002-10-03 22:23:43 +0000 |
commit | 480fa28d20cd1a51bab03867bc077a047bc89dda (patch) | |
tree | 40c3c82969ccfa987efdaa69be12c45874e6a386 /libguile/script.c | |
parent | 66add4ebf558f47afcc8bf5898d7dc4ebb7debe6 (diff) | |
download | guile-480fa28d20cd1a51bab03867bc077a047bc89dda.tar.gz |
Refer to provided? rather than the deprecated feature?.
Diffstat (limited to 'libguile/script.c')
-rw-r--r-- | libguile/script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/script.c b/libguile/script.c index dfbe74d13..f3d89dc3e 100644 --- a/libguile/script.c +++ b/libguile/script.c @@ -656,8 +656,8 @@ scm_compile_shell_switches (int argc, char **argv) } /* If debugging was requested, or we are interactive and debugging - was not explicitely turned off, turn on debugging. */ - if (turn_on_debugging || (interactive && !dont_turn_on_debugging)) + was not explicitly turned off, turn on debugging. */ + if (turn_on_debugging || (interactive && !dont_turn_on_debugging)) { tail = scm_cons (scm_cons (sym_turn_on_debugging, SCM_EOL), tail); } |