[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 01/04: Fix typo in naming function set-current-output-po
From: |
Arne Babenhauserheide |
Subject: |
[Guile-commits] 01/04: Fix typo in naming function set-current-output-port * libguile/ports.c(scm_set_current_output_port): scheme name is set-current-output-port |
Date: |
Sat, 12 Oct 2024 08:07:52 -0400 (EDT) |
arnebab pushed a commit to branch main
in repository guile.
commit 3d2fd7a262702b41e6f2578b96c00b6d28310590
Author: Matthew Wette <mwette@alumni.caltech.edu>
AuthorDate: Mon Oct 7 17:06:23 2024 -0700
Fix typo in naming function set-current-output-port *
libguile/ports.c(scm_set_current_output_port): scheme name is
set-current-output-port
---
libguile/ports.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libguile/ports.c b/libguile/ports.c
index d0e4e0c7f..e9919a1e8 100644
--- a/libguile/ports.c
+++ b/libguile/ports.c
@@ -511,7 +511,7 @@ scm_set_current_input_port (SCM port)
SCM
scm_set_current_output_port (SCM port)
-#define FUNC_NAME "scm-set-current-output-port"
+#define FUNC_NAME "set-current-output-port"
{
SCM ooutp = scm_fluid_ref (cur_outport_fluid);
port = SCM_COERCE_OUTPORT (port);
- [Guile-commits] branch main updated (9b1effb58 -> c0bfa3219), Arne Babenhauserheide, 2024/10/12
- [Guile-commits] 03/04: Create procedure to enable silencing the Guile welcome message. * module/system/repl/repl.scm: add parameter `%inhibit-welcome-message' * module/system/repl/repl.scm(run-repl*): add condition for calling procedure repl-welcome: if (%inhibit-welcome-message) is `#t', don't, Arne Babenhauserheide, 2024/10/12
- [Guile-commits] 01/04: Fix typo in naming function set-current-output-port * libguile/ports.c(scm_set_current_output_port): scheme name is set-current-output-port,
Arne Babenhauserheide <=
- [Guile-commits] 04/04: fix typo in comment, Arne Babenhauserheide, 2024/10/12
- [Guile-commits] 02/04: Redirect diagnostice output messages (e.g., auto-compiling code) to a newly defined current-info-port, and add a command line argument `-I' to set the current-info-port to a void-port. * libguile/ports.c: add cur_infoport_fluid, scm_current_info_port, scm_set_current_info_port; define default current-info-port to stderr * libguile/load.c(compiled_is_fresh,load_thunk_from_path, do_try_auto_compile,scm_sys_warn_auto_compilation_enabled, scm_primitive_load_path): direct output messages to cur [...], Arne Babenhauserheide, 2024/10/12