aboutsummaryrefslogtreecommitdiff
path: root/src/interp/profile.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2013-05-22 18:17:21 +0000
committerdos-reis <gdr@axiomatics.org>2013-05-22 18:17:21 +0000
commit97672104acdafd84c791fb00651b264e8c1345f7 (patch)
tree46e73be4463e5a5e94634c57dc81c11ba25e9753 /src/interp/profile.boot
parentb7e32fb8c5dec3a3b30a6a3974541d5fe4622bd5 (diff)
downloadopen-axiom-97672104acdafd84c791fb00651b264e8c1345f7.tar.gz
Replace Lisp-level structure with Boot datatype
Diffstat (limited to 'src/interp/profile.boot')
-rw-r--r--src/interp/profile.boot5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interp/profile.boot b/src/interp/profile.boot
index 75f2e5ab..7714c190 100644
--- a/src/interp/profile.boot
+++ b/src/interp/profile.boot
@@ -1,6 +1,6 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
--- Copyright (C) 2007-2012, Gabriel Dos Reis.
+-- Copyright (C) 2007-2013, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -33,13 +33,14 @@
import sys_-macros
+import sys_-utility
namespace BOOT
--$profileCompiler := true
$profileAlist := nil
profileWrite() == --called from finalizeLisplib
- outStream := MAKE_-OUTSTREAM strconc(LIBSTREAM_-DIRNAME $libFile,'"/info")
+ outStream := MAKE_-OUTSTREAM strconc(libDirname $libFile,'"/info")
SETQ(_*PRINT_-PRETTY_*, true)
PRINT_-FULL(profileTran $profileAlist,outStream)
SHUT outStream