On Mon 08 Apr 2013 03:21, Reuben Thomas <[email protected]> writes: > How can I retain auto-compile, but stop guile outputting messages like: > > $ guile ./syms.scm > ;;; note: source file /home/rrt/Software/syms/./syms.scm > ;;; newer than compiled > /home/rrt/.cache/guile/ccache/2.0-LE-8-2.0/home/rrt/Software/syms/syms.scm. > go > ;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0 > ;;; or pass the --no-auto-compile argument to disable. > ;;; compiling /home/rrt/Software/syms/./syms.scm > ;;; compiled > /home/rrt/.cache/guile/ccache/2.0-LE-8-2.0/home/rrt/Software/syms/syms.scm. > go > > so that when I run a script that hasn't been installed with > pre-compilation I'm not bothered by compilation messages? I suppose I do > want to see the messages if there's a problem, though.
There's no command-line argument yet. But you can: guile -e '(current-warning-port (%make-void-port "w"))' syms.scm Unfortunately it's not working at the moment; some things are still writing to current-error-port. Hummmmm. Andy -- http://wingolog.org/
