From 6c329976e15d3c2ef52118e21b64b88d89560a0f Mon Sep 17 00:00:00 2001 From: gerd <gerd> Date: Sat, 19 Apr 2003 12:31:31 +0000 Subject: [PATCH] Fix for LAMBDA.{27,28,29,50,32,33,34,35}, FLET.{57,58,59,60} test cases. * src/compiler/locall.lisp (convert-more-call): Handle the case of a null arglist. --- compiler/locall.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/locall.lisp b/compiler/locall.lisp index 0ee3d6c12..a71ee4ce0 100644 --- a/compiler/locall.lisp +++ b/compiler/locall.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/locall.lisp,v 1.52 2002/11/21 20:02:26 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/locall.lisp,v 1.53 2003/04/19 12:31:31 gerd Exp $") ;;; ;;; ********************************************************************** ;;; @@ -627,7 +627,7 @@ (collect ((call-args)) (do ((var arglist (cdr var)) (temp (temps) (cdr temp))) - (()) + ((null var)) (let ((info (lambda-var-arg-info (car var)))) (if info (ecase (arg-info-kind info) -- GitLab