summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2003-01-11 22:39:40 +0000
committerJose Antonio Ortega Ruiz <jao@gnu.org>2003-01-11 22:39:40 +0000
commit33d89c6f474118cb0bf4e716a844e7fc00beca1c (patch)
treee402d3531086995e5be15a96756e1d66d7638293 /doc
parentd4eb1bdf2de67914f64f2eb2d7ae9b3f82bd114c (diff)
downloadmdk-33d89c6f474118cb0bf4e716a844e7fc00beca1c.tar.gz
mdk-33d89c6f474118cb0bf4e716a844e7fc00beca1c.tar.bz2
(mixvm wrappers): Bug #1703 fixed.
Diffstat (limited to 'doc')
-rw-r--r--doc/mdk_mixguile.texi12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/mdk_mixguile.texi b/doc/mdk_mixguile.texi
index dc2d2b0..c91e1f2 100644
--- a/doc/mdk_mixguile.texi
+++ b/doc/mdk_mixguile.texi
@@ -1,10 +1,10 @@
@c -*-texinfo-*-
@c This is part of the GNU MDK Reference Manual.
-@c Copyright (C) 2000, 2001
+@c Copyright (C) 2000, 2001, 2003
@c Free Software Foundation, Inc.
@c See the file mdk.texi for copying conditions.
-@c $Id: mdk_mixguile.texi,v 1.3 2001/09/28 23:11:44 jao Exp $
+@c $Id: mdk_mixguile.texi,v 1.4 2003/01/11 22:39:40 jao Exp $
@node mixguile, Problems, gmixvm, Top
@chapter @code{mixguile}, the Scheme virtual machine
@@ -240,7 +240,7 @@ invocations are pairwise equivalent:
@example
MIX > load ../samples/hello
-MIX > (mix-load "../samples/hello)
+MIX > (mix-load "../samples/hello")
MIX > next 5
MIX > (mix-next 5)
@@ -310,7 +310,7 @@ post-hooks for the @code{next} and @code{run} commands. If you are
curious, you can check the Scheme source code at
@file{@emph{prefix}/share/mdk/mixguile-vm-stat.scm} (where @emph{prefix}
stands for your root install directory, usualy @code{/usr} or
-@code{/usr/local}.
+@code{/usr/local}.
@end defun
@@ -328,7 +328,7 @@ Scheme functions described so far are of no help: you can print the
contents of @code{A} using @code{(mix-preg 'A)}, but you cannot define a
variable containing the contents of @code{A}. To address this kind of
problems, the MIX/Scheme library provides the following additional
-functions:
+functions:
@defun mixvm-status
@defunx mix-vm-status
@@ -374,7 +374,7 @@ ok
guile> (define reg-a (mix-reg 'A))
guile> (display reg-a)
2000
-guile>
+guile>
@end example
@end defun