mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-29 14:30:34 +02:00
guile(1): Add missing -C --rNrs --language args
* doc/guile.1: add missing arguments and escape some adjacent dashes.
This commit is contained in:
parent
af96820e07
commit
a74987beba
1 changed files with 36 additions and 9 deletions
45
doc/guile.1
45
doc/guile.1
|
@ -1,5 +1,5 @@
|
||||||
.\" Written by Robert Merkel (rgmerk@mira.net)
|
.\" Written by Robert Merkel (rgmerk@mira.net)
|
||||||
.\" augmented by Rob Browning <rlb@cs.utexas.edu>
|
.\" augmented by Rob Browning <rlb@defaultvalue.org>
|
||||||
.\" Process this file with
|
.\" Process this file with
|
||||||
.\" groff -man -Tascii foo.1
|
.\" groff -man -Tascii foo.1
|
||||||
.\"
|
.\"
|
||||||
|
@ -55,12 +55,21 @@ Please consult the Guile info documentation for more information,
|
||||||
.
|
.
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
.TP
|
.TP
|
||||||
.BI -L \ DIRECTORY
|
.BI \-L \ DIRECTORY
|
||||||
Add \fIDIRECTORY\fR to the front of Guile's module load path.
|
Add \fIDIRECTORY\fR to the front of Guile's module load path. The given
|
||||||
|
directories are searched in the order given on the command line and
|
||||||
|
before any directories in the \fBGUILE_LOAD_PATH\fR environment
|
||||||
|
variable. Paths added here are not in effect during execution of
|
||||||
|
the user's \fI~/.guile\fR file.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
.BI -l \ FILE
|
.BI \-C \ DIRECTORY
|
||||||
Load Scheme source code from \fIFILE\fR.
|
Like \fB\-L\fR, but adjusts the load path for compiled files.
|
||||||
|
.
|
||||||
|
.TP
|
||||||
|
.BI \-l \ FILE
|
||||||
|
Load Scheme source code from \fIFILE\fR, and continue processing the
|
||||||
|
command line.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
.BI -e \ FUNCTION
|
.BI -e \ FUNCTION
|
||||||
|
@ -121,14 +130,26 @@ even if
|
||||||
is being run interactively.
|
is being run interactively.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
.B --auto-compile
|
.B \-\-auto\-compile
|
||||||
Compile source files automatically (default behavior).
|
Compile source files automatically (default behavior).
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
.B --no-auto-compile
|
.B \-\-fresh\-auto\-compile
|
||||||
|
Treat the auto-compilation cache as invalid, forcing recompilation.
|
||||||
|
.
|
||||||
|
.TP
|
||||||
|
.B \-\-no\-auto\-compile
|
||||||
Disable automatic source file compilation.
|
Disable automatic source file compilation.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
|
.BI \-\-language \ LANG
|
||||||
|
For the remainder of the command line arguments, assume that files
|
||||||
|
mentioned with \fB\-l\fR and expressions passed with \fB\-c\fR are
|
||||||
|
written in \fILANG\fR, which must be the name of one of the languages
|
||||||
|
supported by the compiler. When run interactively, set the REPL's
|
||||||
|
language to \fILANG\fR.
|
||||||
|
.
|
||||||
|
.TP
|
||||||
\fB\-\-listen\fR[=\fIP\fR]
|
\fB\-\-listen\fR[=\fIP\fR]
|
||||||
Listen on a port or socket for remote REPL connections.
|
Listen on a port or socket for remote REPL connections.
|
||||||
See the manual for more details.
|
See the manual for more details.
|
||||||
|
@ -140,6 +161,12 @@ For example,
|
||||||
\fB \-\-use\-srfi\fR=\fI8,13\fR.
|
\fB \-\-use\-srfi\fR=\fI8,13\fR.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
|
\fB\-\-r6rs\fR, \fB\-\-r7rs\fR
|
||||||
|
Adapt Guile's initial environment to better support R6RS or R7RS. See
|
||||||
|
"R6RS Incompatibilities" and "R7RS Incompatibilities" in the info pages
|
||||||
|
for some caveats.
|
||||||
|
.
|
||||||
|
.TP
|
||||||
.BI -x \ EXTENSION
|
.BI -x \ EXTENSION
|
||||||
Add \fIEXTENSION\fR to the
|
Add \fIEXTENSION\fR to the
|
||||||
.B guile
|
.B guile
|
||||||
|
@ -231,7 +258,7 @@ so it is in your interest to report them in such a way that they can be
|
||||||
easily reproduced.
|
easily reproduced.
|
||||||
.
|
.
|
||||||
.SH COPYING
|
.SH COPYING
|
||||||
Copyright (C) 2010, 2011 Free Software Foundation, Inc.
|
Copyright (C) 2010, 2011, 2025 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Permission is granted to make and distribute verbatim copies of this
|
Permission is granted to make and distribute verbatim copies of this
|
||||||
document provided the copyright notice and this permission notice are
|
document provided the copyright notice and this permission notice are
|
||||||
|
@ -250,7 +277,7 @@ translation approved by the Free Software Foundation.
|
||||||
.
|
.
|
||||||
.SH AUTHORS
|
.SH AUTHORS
|
||||||
Robert Merkel <rgmerk@mira.net> wrote this manpage.
|
Robert Merkel <rgmerk@mira.net> wrote this manpage.
|
||||||
Rob Browning <rlb@cs.utexas.edu> has added to it.
|
Rob Browning <rlb@defaultvalue.org> has added to it.
|
||||||
|
|
||||||
.B guile
|
.B guile
|
||||||
is GNU software.
|
is GNU software.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue