diff options
Diffstat (limited to 'libguile/print.c')
-rw-r--r-- | libguile/print.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libguile/print.c b/libguile/print.c index 8bed72297..fa6ea8c1a 100644 --- a/libguile/print.c +++ b/libguile/print.c @@ -83,7 +83,9 @@ scm_t_option scm_print_opts[] = { "How to print symbols that have a colon as their first or last character. " "The value '#f' does not quote the colons; '#t' quotes them; " "'reader' quotes them when the reader option 'keywords' is not '#f'." - } + }, + { 0 }, + }; SCM_DEFINE (scm_print_options, "print-options-interface", 0, 1, 0, @@ -96,7 +98,6 @@ SCM_DEFINE (scm_print_options, "print-options-interface", 0, 1, 0, { SCM ans = scm_options (setting, scm_print_opts, - SCM_N_PRINT_OPTIONS, FUNC_NAME); return ans; } @@ -1165,7 +1166,7 @@ scm_init_print () { SCM vtable, layout, type; - scm_init_opts (scm_print_options, scm_print_opts, SCM_N_PRINT_OPTIONS); + scm_init_opts (scm_print_options, scm_print_opts); scm_print_options (scm_list_4 (scm_from_locale_symbol ("highlight-prefix"), scm_from_locale_string ("{"), |