From ab86049f03e3457516a023ead36d9a72ccdf9465 Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Sun, 26 Jan 2003 22:09:02 +0000 Subject: [PATCH] REQUIRED-ARGUMENT is in the EXT package. --- code/profile.lisp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/profile.lisp b/code/profile.lisp index 0566f05ec..41379c490 100644 --- a/code/profile.lisp +++ b/code/profile.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/code/profile.lisp,v 1.27 2003/01/23 21:05:34 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/profile.lisp,v 1.28 2003/01/26 22:09:02 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -205,10 +205,10 @@ this, the functions are listed. If NIL, then always list the functions.") (defvar *profile-info* (make-hash-table :test #'equal)) (defstruct profile-info (name nil) - (old-definition (required-argument) :type function) - (new-definition (required-argument) :type function) - (read-time (required-argument) :type function) - (reset-time (required-argument) :type function)) + (old-definition (ext:required-argument) :type function) + (new-definition (ext:required-argument) :type function) + (read-time (ext:required-argument) :type function) + (reset-time (ext:required-argument) :type function)) ;;; PROFILE-INFO-OR-LOSE -- Internal ;;; -- GitLab