diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2003-01-11 22:39:40 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2003-01-11 22:39:40 +0000 |
commit | fa20343e70359bca652174503a07fe23e634e6e0 (patch) | |
tree | dbfc0650630542c39787c70c1949ad9a118967f9 /doc/mdk_mixguile.texi | |
parent | 207912bc8be1c8461416ccc01359d8782b352e00 (diff) | |
download | mdk-fa20343e70359bca652174503a07fe23e634e6e0.tar.gz mdk-fa20343e70359bca652174503a07fe23e634e6e0.tar.bz2 |
(mixvm wrappers): Bug #1703 fixed.
Diffstat (limited to 'doc/mdk_mixguile.texi')
-rw-r--r-- | doc/mdk_mixguile.texi | 12 |
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 |