[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] branch main updated (9b1effb58 -> c0bfa3219)
From: |
Arne Babenhauserheide |
Subject: |
[Guile-commits] branch main updated (9b1effb58 -> c0bfa3219) |
Date: |
Sat, 12 Oct 2024 08:07:51 -0400 (EDT) |
arnebab pushed a change to branch main
in repository guile.
from 9b1effb58 Compile with -fexcess-precision=standard for i[3456]86 when
we can
new 3d2fd7a26 Fix typo in naming function set-current-output-port *
libguile/ports.c(scm_set_current_output_port): scheme name is
set-current-output-port
new 78e9e5106 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 ou [...]
new 8d21dd7eb 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
new c0bfa3219 fix typo in comment
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
doc/ref/guile-invoke.texi | 4 ++++
libguile/init.c | 1 +
libguile/load.c | 42 +++++++++++++++++++++---------------------
libguile/ports.c | 33 ++++++++++++++++++++++++++++++++-
libguile/ports.h | 2 ++
module/ice-9/boot-9.scm | 13 ++++++++++---
module/ice-9/command-line.scm | 4 ++++
module/ice-9/ports.scm | 18 +++++++++++++++---
module/system/repl/repl.scm | 10 ++++++++--
9 files changed, 97 insertions(+), 30 deletions(-)
- [Guile-commits] branch main updated (9b1effb58 -> c0bfa3219),
Arne Babenhauserheide <=
- [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, 2024/10/12
- [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