[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-216-g14ae4
From: |
Mike Gran |
Subject: |
[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-216-g14ae472 |
Date: |
Thu, 21 Mar 2013 17:25:49 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".
http://git.savannah.gnu.org/cgit/guile.git/commit/?id=14ae4725ab5cdfc334786012c0b4fdacc2851be2
The branch, stable-2.0 has been updated
via 14ae4725ab5cdfc334786012c0b4fdacc2851be2 (commit)
from edb6de0becea3a52a4e5e3fa73a090928f0cbd61 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 14ae4725ab5cdfc334786012c0b4fdacc2851be2
Author: Mike Gran <address@hidden>
Date: Thu Mar 21 09:20:31 2013 -0700
Document quit and exit
* doc/ref/posix.texi (Processes): document `quit' and `exit'
* doc/ref/r6rs.texi (rnrs programs): xref exit
-----------------------------------------------------------------------
Summary of changes:
doc/ref/posix.texi | 12 ++++++++++++
doc/ref/r6rs.texi | 6 +++---
2 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/doc/ref/posix.texi b/doc/ref/posix.texi
index d659cf3..ded3787 100644
--- a/doc/ref/posix.texi
+++ b/doc/ref/posix.texi
@@ -1718,6 +1718,18 @@ interpretation is not required.
Example: (system* "echo" "foo" "bar")
@end deffn
address@hidden {Scheme Procedure} quit [status]
address@hidden {Scheme Procedure} exit [status]
+Terminate the current process with proper unwinding of the Scheme stack.
+The exit status zero if @var{status} is not supplied. If @var{status}
+is supplied, and it is an integer, that integer is used as the exit
+status. If @var{status} is @code{#t} or @code{#f}, the exit status is 0
+or 1, respectively.
+
+The procedure @code{exit} is an alias of @code{quit}. They have the
+same functionality.
address@hidden deffn
+
@deffn {Scheme Procedure} primitive-exit [status]
@deffnx {Scheme Procedure} primitive-_exit [status]
@deffnx {C Function} scm_primitive_exit (status)
diff --git a/doc/ref/r6rs.texi b/doc/ref/r6rs.texi
index 13f9e20..b183771 100644
--- a/doc/ref/r6rs.texi
+++ b/doc/ref/r6rs.texi
@@ -1521,9 +1521,9 @@ This procedure is identical to the one provided by
Guile's core library.
@xref{Runtime Environment}, for documentation.
@end deffn
address@hidden {Scheme Procedure} exit
address@hidden {Scheme Procedure} exit obj
-This procedure is identical to the one provided by Guile's core library.
address@hidden {Scheme Procedure} exit [status]
+This procedure is identical to the one provided by Guile's core
+library. @xref{Processes}, for documentation.
@end deffn
@node rnrs arithmetic fixnums
hooks/post-receive
--
GNU Guile
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-216-g14ae472,
Mike Gran <=