mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-15 08:10:17 +02:00
add current-warning-port
* libguile/ports.h: * libguile/ports.c (scm_current_warning_port) (scm_set_current_warning_port): New functions, wrapping the Scheme parameter. * module/ice-9/boot-9.scm (current-warning-port): New parameter, defining a port for warnings.
This commit is contained in:
parent
13dd74c8ea
commit
3972de7675
3 changed files with 41 additions and 0 deletions
|
@ -412,6 +412,17 @@ SCM_DEFINE (scm_current_error_port, "current-error-port", 0, 0, 0,
|
|||
}
|
||||
#undef FUNC_NAME
|
||||
|
||||
SCM
|
||||
scm_current_warning_port (void)
|
||||
{
|
||||
static SCM cwp_var = SCM_BOOL_F;
|
||||
|
||||
if (scm_is_false (cwp_var))
|
||||
cwp_var = scm_c_private_lookup ("guile", "current-warning-port");
|
||||
|
||||
return scm_call_0 (scm_variable_ref (cwp_var));
|
||||
}
|
||||
|
||||
SCM_DEFINE (scm_current_load_port, "current-load-port", 0, 0, 0,
|
||||
(),
|
||||
"Return the current-load-port.\n"
|
||||
|
@ -466,6 +477,19 @@ SCM_DEFINE (scm_set_current_error_port, "set-current-error-port", 1, 0, 0,
|
|||
}
|
||||
#undef FUNC_NAME
|
||||
|
||||
|
||||
SCM
|
||||
scm_set_current_warning_port (SCM port)
|
||||
{
|
||||
static SCM cwp_var = SCM_BOOL_F;
|
||||
|
||||
if (scm_is_false (cwp_var))
|
||||
cwp_var = scm_c_private_lookup ("guile", "current-warning-port");
|
||||
|
||||
return scm_call_1 (scm_variable_ref (cwp_var), port);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
scm_dynwind_current_input_port (SCM port)
|
||||
#define FUNC_NAME NULL
|
||||
|
|
|
@ -247,10 +247,12 @@ SCM_API SCM scm_drain_input (SCM port);
|
|||
SCM_API SCM scm_current_input_port (void);
|
||||
SCM_API SCM scm_current_output_port (void);
|
||||
SCM_API SCM scm_current_error_port (void);
|
||||
SCM_API SCM scm_current_warning_port (void);
|
||||
SCM_API SCM scm_current_load_port (void);
|
||||
SCM_API SCM scm_set_current_input_port (SCM port);
|
||||
SCM_API SCM scm_set_current_output_port (SCM port);
|
||||
SCM_API SCM scm_set_current_error_port (SCM port);
|
||||
SCM_API SCM scm_set_current_warning_port (SCM port);
|
||||
SCM_API void scm_dynwind_current_input_port (SCM port);
|
||||
SCM_API void scm_dynwind_current_output_port (SCM port);
|
||||
SCM_API void scm_dynwind_current_error_port (SCM port);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue