summaryrefslogtreecommitdiff
path: root/doc/scheme-scheduling.texi
diff options
context:
space:
mode:
authorMartin Grabmüller <mgrabmue@cs.tu-berlin.de>2001-04-03 13:11:14 +0000
committerMartin Grabmüller <mgrabmue@cs.tu-berlin.de>2001-04-03 13:11:14 +0000
commitae9f3a15826847d280f69b179c2e09776892a9c6 (patch)
tree3cf3342baffc1969586e0cd94e3f347176dd44d3 /doc/scheme-scheduling.texi
parentabaec75d1d092f5bf648faa34be0e303879579ba (diff)
downloadguile-ae9f3a15826847d280f69b179c2e09776892a9c6.tar.gz
* scheme-options.texi, scheme-procedures.texi,
scheme-modules.texi, scheme-memory.texi, scheme-control.texi, scheme-utility.texi, scheme-io.texi, scheme-evaluation.texi, scheme-data.texi: Removed a lot of ARGFIXME's after tweaking docstrings and C source. * new-docstrings.texi, scheme-io.texi, scheme-data.texi, posix.texi, scheme-control.texi, scheme-evaluation.texi, scheme-memory.texi, scheme-procedures.texi, scheme-modules.texi, scheme-scheduling.texi: Automated docstring merging.
Diffstat (limited to 'doc/scheme-scheduling.texi')
-rw-r--r--doc/scheme-scheduling.texi12
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/scheme-scheduling.texi b/doc/scheme-scheduling.texi
index 89ce8a4f7..c9756eb33 100644
--- a/doc/scheme-scheduling.texi
+++ b/doc/scheme-scheduling.texi
@@ -123,7 +123,7 @@ Before calling @var{thunk}, the dynamic-wind chain is un-wound back to
the root and a new chain started for @var{thunk}. Therefore, this call
may not do what you expect:
-@example
+@lisp
;; Almost certainly a bug:
(with-output-to-port
some-port
@@ -134,7 +134,7 @@ may not do what you expect:
(display 'fnord)
(newline))
(lambda (errcode) errcode))))
-@end example
+@end lisp
The problem is, on what port will @samp{fnord} be displayed? You
might expect that because of the @code{with-output-to-port} that
@@ -353,13 +353,15 @@ in its own dynamic root, you can use fluids for thread local storage.
@c docstring begin (texi-doc-string "guile" "fluid?")
@deffn primitive fluid? obj
-Return #t iff @var{obj} is a fluid; otherwise, return #f.
+Return @code{#t} iff @var{obj} is a fluid; otherwise, return
+@code{#f}.
@end deffn
@c docstring begin (texi-doc-string "guile" "fluid-ref")
@deffn primitive fluid-ref fluid
-Return the value associated with @var{fluid} in the current dynamic root.
-If @var{fluid} has not been set, then this returns #f.
+Return the value associated with @var{fluid} in the current
+dynamic root. If @var{fluid} has not been set, then return
+@code{#f}.
@end deffn
@c docstring begin (texi-doc-string "guile" "fluid-set!")