From 5a23145bdead402c590c51d9e6298def9e072d8d Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20V=C3=A1zquez?= Date: Sun, 20 Jan 2013 17:29:32 +0000 Subject: [PATCH] Fix (/ N) --- ecmalisp.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecmalisp.lisp b/ecmalisp.lisp index 0258d41..d485335 100644 --- a/ecmalisp.lisp +++ b/ecmalisp.lisp @@ -1600,7 +1600,7 @@ (let ((args (cons x others))) (variable-arity args (if (null others) - (concat "/" (car args)) + (concat "1 /" (car args)) (join args "/"))))) (define-builtin mod (x y) (num-op-num x "%" y)) -- 1.7.10.4