diff options
author | Andy Wingo <wingo@pobox.com> | 2010-10-12 12:58:36 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-10-12 13:01:30 +0200 |
commit | ced9917e127456a63c6c09d28424d886b8f14634 (patch) | |
tree | 37ecdea66c43c833db7b635f457501c1dfb81e03 /doc/ref/scheme-scripts.texi | |
parent | f88dae81fe9dce0fd4af531899631ec070d10ea6 (diff) | |
download | guile-ced9917e127456a63c6c09d28424d886b8f14634.tar.gz |
minor doc fixups
* doc/ref/scheme-scripts.texi (Invoking Guile): Some typos.
* doc/ref/tour.texi (Running Guile Scripts): More typos and PDF
improvements.
* doc/ref/scheme-using.texi (Readline, Value History): Minor rewording.
(Help Commands): Minor fixup.
Diffstat (limited to 'doc/ref/scheme-scripts.texi')
-rw-r--r-- | doc/ref/scheme-scripts.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ref/scheme-scripts.texi b/doc/ref/scheme-scripts.texi index 5a151a4fd..225b34b88 100644 --- a/doc/ref/scheme-scripts.texi +++ b/doc/ref/scheme-scripts.texi @@ -199,13 +199,13 @@ If @var{p} is not given, the default is local port 37146. If you look at it upside down, it almost spells ``Guile''. If you have netcat installed, you should be able to @kbd{nc localhost 37146} and get a Guile prompt. Alternately you can fire up Emacs and connect to the -procedure; see @ref{Using Guile in Emacs} for more details. +process; see @ref{Using Guile in Emacs} for more details. Note that opening a port allows anyone who can connect to that port---in the TCP case, any local user---to do anything Guile can do, as the user that the Guile process is running as. Don't use @option{--listen} on -multi-user machines. Of course, if there is no @option{--listen} -argument, no port will be opened. +multi-user machines. Of course, if you don't pass @option{--listen} to +Guile, no port will be opened. That said, @code{--listen} is great for interactive debugging and development. |