From 7e5722e9265dbdf2b5eb0637ee84a6740b6cf23a Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Sat, 9 Nov 1991 20:52:53 +0000 Subject: [PATCH] Added NIL-FUNCTION-RETURNED-ERROR. --- compiler/mips/call.lisp | 7 ++++--- compiler/rt/call.lisp | 3 ++- compiler/sparc/call.lisp | 5 +++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/compiler/mips/call.lisp b/compiler/mips/call.lisp index e04c5b2c9..7d58fb822 100644 --- a/compiler/mips/call.lisp +++ b/compiler/mips/call.lisp @@ -7,11 +7,11 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.40 1991/11/08 15:14:11 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.41 1991/11/09 20:52:53 ram Exp $") ;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.40 1991/11/08 15:14:11 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.41 1991/11/09 20:52:53 ram Exp $ ;;; ;;; This file contains the VM definition of function call for the MIPS. ;;; @@ -1229,4 +1229,5 @@ default-value-8 (frob argument-count-error invalid-argument-count-error nargs) (frob type-check-error object-not-type-error object type) (frob odd-keyword-arguments-error odd-keyword-arguments-error) - (frob unknown-keyword-argument-error unknown-keyword-argument-error key)) + (frob unknown-keyword-argument-error unknown-keyword-argument-error key) + (frob nil-function-returned-error nil-function-returned-error fun)) diff --git a/compiler/rt/call.lisp b/compiler/rt/call.lisp index 17634fb45..db9248d86 100644 --- a/compiler/rt/call.lisp +++ b/compiler/rt/call.lisp @@ -1149,4 +1149,5 @@ default-value-5 (frob argument-count-error invalid-argument-count-error nargs) (frob type-check-error object-not-type-error object type) (frob odd-keyword-arguments-error odd-keyword-arguments-error) - (frob unknown-keyword-argument-error unknown-keyword-argument-error key)) + (frob unknown-keyword-argument-error unknown-keyword-argument-error key) + (frob nil-function-returned-error nil-function-returned-error fun)) diff --git a/compiler/sparc/call.lisp b/compiler/sparc/call.lisp index 57f0d0647..9806582cd 100644 --- a/compiler/sparc/call.lisp +++ b/compiler/sparc/call.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.6 1991/11/08 15:22:10 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.7 1991/11/09 20:50:29 ram Exp $ ;;; ;;; This file contains the VM definition of function call for the SPARC. ;;; @@ -1209,4 +1209,5 @@ default-value-8 (frob argument-count-error invalid-argument-count-error nargs) (frob type-check-error object-not-type-error object type) (frob odd-keyword-arguments-error odd-keyword-arguments-error) - (frob unknown-keyword-argument-error unknown-keyword-argument-error key)) + (frob unknown-keyword-argument-error unknown-keyword-argument-error key) + (frob nil-function-returned-error nil-function-returned-error fun)) -- GitLab