summaryrefslogtreecommitdiff
path: root/xen.c
diff options
context:
space:
mode:
authorAlessio Treglia <alessio@debian.org>2010-07-12 11:59:28 +0200
committerAlessio Treglia <alessio@debian.org>2010-07-12 11:59:28 +0200
commit6d99b2e313fc5878ab1ac115460f0e85595825a0 (patch)
tree5648167525181e3f15d56c38fd8a343fc6726b7b /xen.c
parentff6dcdcac8ef6c6d72725f98410ce3c56b5a621f (diff)
Imported Upstream version 11.7
Diffstat (limited to 'xen.c')
-rw-r--r--xen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen.c b/xen.c
index e61dd16..3f34e71 100644
--- a/xen.c
+++ b/xen.c
@@ -2133,7 +2133,7 @@ s7_scheme *s7_xen_initialize(s7_scheme *sc)
XEN_EVAL_C_STRING("(define load-from-path load)");
XEN_EVAL_C_STRING("(define (1+ x) \"add 1 to arg\" (+ x 1))");
XEN_EVAL_C_STRING("(define (1- x) \"subtract 1 from arg\" (- x 1))");
- XEN_EVAL_C_STRING("(defmacro while (cond . body) `(do () ((not ,cond)) ,@body))");
+ XEN_EVAL_C_STRING("(defmacro while (whether . body) `(do () ((not ,whether)) ,@body))");
XEN_EVAL_C_STRING("(define (identity x) \"return arg\" x)"); /* popup.scm uses this */
XEN_EVAL_C_STRING("(define (throw . args) (apply error args))"); /* selection.scm uses this (also the break macro in snd-xen.c) */