diff options
author | Andy Wingo <wingo@pobox.com> | 2010-10-01 09:56:15 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-10-01 09:56:15 +0200 |
commit | 427230476126554c5adde1e0b853c974e2caae55 (patch) | |
tree | dc089ef00db5cc0d2ffaf3e583f112bf2db6a5ed /libguile/print.c | |
parent | 542f975e608645122ff41d11f9b782009dadf9dd (diff) | |
download | guile-427230476126554c5adde1e0b853c974e2caae55.tar.gz |
remove unused print-options
* libguile/private-options.h (SCM_PRINT_CLOSURE, SCM_PRINT_SOURCE_P):
* libguile/print.c (scm_print_opts):
* doc/ref/api-options.texi (Printing options): Remove source and
closure-hook print options.
Diffstat (limited to 'libguile/print.c')
-rw-r--r-- | libguile/print.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libguile/print.c b/libguile/print.c index ad3e8c09a..8c807bbaf 100644 --- a/libguile/print.c +++ b/libguile/print.c @@ -89,10 +89,6 @@ static const char *iflagnames[] = SCM_SYMBOL (sym_reader, "reader"); scm_t_option scm_print_opts[] = { - { SCM_OPTION_SCM, "closure-hook", (unsigned long) SCM_BOOL_F, - "Hook for printing closures (should handle macros as well)." }, - { SCM_OPTION_BOOLEAN, "source", 0, - "Print closures with source." }, { SCM_OPTION_SCM, "highlight-prefix", (unsigned long)SCM_BOOL_F, "The string to print before highlighted values." }, { SCM_OPTION_SCM, "highlight-suffix", (unsigned long)SCM_BOOL_F, |