aboutsummaryrefslogtreecommitdiff
path: root/src/interp/functor.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2012-08-26 02:18:54 +0000
committerdos-reis <gdr@axiomatics.org>2012-08-26 02:18:54 +0000
commite4d0798fd570256bd6d399ce714fe55293044da6 (patch)
tree99417eb99530f3dceda4f8f25c5718ea801be5f2 /src/interp/functor.boot
parent8e50d849f23a839f2410cc388f97ee2dc4c76786 (diff)
downloadopen-axiom-e4d0798fd570256bd6d399ce714fe55293044da6.tar.gz
* interp/br-saturn.boot: Replace TERPRI with finishLine.
* interp/c-util.boot: Likewise. * interp/clam.boot: Likewise. * interp/compiler.boot: Likewise. * interp/diagnostics.boot: Likewise. * interp/format.boot: Likewise. * interp/functor.boot: Likewise. * interp/g-error.boot: Likewise. * interp/ht-util.boot: Likewise. * interp/i-syscmd.boot: Likewise. * interp/i-toplev.boot: Likewise. * interp/postpar.boot: Likewise. * interp/setvars.boot: Likewise. * interp/topics.boot: Likewise. * interp/trace.boot: Likewise.
Diffstat (limited to 'src/interp/functor.boot')
-rw-r--r--src/interp/functor.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/functor.boot b/src/interp/functor.boot
index ae7073a2..06eac21d 100644
--- a/src/interp/functor.boot
+++ b/src/interp/functor.boot
@@ -1,6 +1,6 @@
-- Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd.
-- All rights reserved.
--- Copyright (C) 2007-2011, Gabriel Dos Reis.
+-- Copyright (C) 2007-2012, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -80,7 +80,7 @@ DomainPrint(D,brief) ==
s:= $WhereList
$WhereList:= nil
for u in s repeat
- TERPRI()
+ finishLine $OutputStream
SAY ['"Where ",first u,'" is:"]
DomainPrint1(rest u,brief,env)
SAY '"-----------------------------------------------------------------------"