From 8f2c887a5500d1cba7c1e53e18233085de87a783 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Mon, 16 Sep 2002 09:43:51 +0000 Subject: [PATCH] r2710: Auto commit for Debian build --- lml.cl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lml.cl b/lml.cl index 4f73fdb..8efdc39 100644 --- a/lml.cl +++ b/lml.cl @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: lml.cl,v 1.6 2002/09/16 09:36:27 kevin Exp $ +;;;; $Id: lml.cl,v 1.7 2002/09/16 09:43:51 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -223,7 +223,9 @@ (return nil)) (vector-push-extend ch curr-string)) (vector-push-extend #\) curr-string) - (princ (eval (read-from-string curr-string))) + (let ((result (eval (read-from-string curr-string)))) + (when result + (princ result))) (setf (fill-pointer curr-string) 0)) ;; read comma, then non #\( char (progn -- 2.34.1