From 58a13a11776c7ef68780c47162c129bb9b61f917 Mon Sep 17 00:00:00 2001 From: gerd <gerd> Date: Sat, 26 Apr 2003 19:34:52 +0000 Subject: [PATCH] * src/compiler/fndb.lisp (nconc): Change arg types to T because the last arg may not be a list. --- compiler/fndb.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/fndb.lisp b/compiler/fndb.lisp index 06385e5ce..e72e45933 100644 --- a/compiler/fndb.lisp +++ b/compiler/fndb.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/fndb.lisp,v 1.111 2003/04/23 20:05:05 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.112 2003/04/26 19:34:52 gerd Exp $") ;;; ;;; ********************************************************************** ;;; @@ -605,7 +605,7 @@ (defknown copy-alist (list) list (flushable)) (defknown copy-tree (t) t (flushable)) (defknown revappend (list t) t (flushable)) -(defknown nconc (&rest list) list ()) +(defknown nconc (&rest t) t ()) (defknown nreconc (list t) list ()) (defknown butlast (list &optional index) list (flushable)) (defknown nbutlast (list &optional index) list ()) -- GitLab