diff options
author | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-02-16 15:07:52 +0000 |
---|---|---|
committer | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-02-16 15:07:52 +0000 |
commit | 713311884eb8e0fc5c6bb1c2113c96c68c534e4e (patch) | |
tree | 33a98b3eebf6eac66388e45d87e5df71ac90ed62 /libguile/print.c | |
parent | 950ba52d9ea912fe4544692311cf0282fbb0ab39 (diff) |
(scm_print_options, scm_port_with_print_state, scm_get_print_state):
Added docstrings.
Diffstat (limited to 'libguile/print.c')
-rw-r--r-- | libguile/print.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libguile/print.c b/libguile/print.c index c7fa4b157..20bcad6c9 100644 --- a/libguile/print.c +++ b/libguile/print.c @@ -135,7 +135,9 @@ scm_option scm_print_opts[] = { SCM_DEFINE (scm_print_options, "print-options-interface", 0, 1, 0, (SCM setting), -"") + "Option interface for the print options. Instead of using\n" + "this procedure directly, use the procedures @code{print-enable},\n" + "@code{print-disable}, @code{print-set!} and @var{print-options}.") #define FUNC_NAME s_scm_print_options { SCM ans = scm_options (setting, @@ -1101,7 +1103,8 @@ scm_printer_apply (SCM proc, SCM exp, SCM port, scm_print_state *pstate) SCM_DEFINE (scm_port_with_print_state, "port-with-print-state", 2, 0, 0, (SCM port, SCM pstate), - "") + "Create a new port which behaves like @var{port}, but with an\n" + "included print state @var{pstate}.") #define FUNC_NAME s_scm_port_with_print_state { SCM pwps; @@ -1115,7 +1118,8 @@ SCM_DEFINE (scm_port_with_print_state, "port-with-print-state", 2, 0, 0, SCM_DEFINE (scm_get_print_state, "get-print-state", 1, 0, 0, (SCM port), - "") + "Return the print state of the port @var{port}. If @var{port}\n" + "has no associated print state, @code{#f} is returned.") #define FUNC_NAME s_scm_get_print_state { if (SCM_PORT_WITH_PS_P (port)) |