aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@axiomatics.org>2016-12-26 01:13:34 -0800
committerGabriel Dos Reis <gdr@axiomatics.org>2016-12-26 01:13:34 -0800
commita8a3b2cdf66d274c831ad6229e6123e9cd68e07d (patch)
tree5adc2b793f22e44b2a31c0fff23a64dece25a6c7 /src
parent4857038cb4f867f8193dece30a837a60da754edc (diff)
downloadopen-axiom-a8a3b2cdf66d274c831ad6229e6123e9cd68e07d.tar.gz
* interp/i-output.boot (appChar): Don't modify string parameter.
* algebra/Makefile.am (strap-1/FINITE.$(FASLEXT)): Update dependency.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/algebra/Makefile.am3
-rw-r--r--src/algebra/Makefile.in3
-rw-r--r--src/interp/i-output.boot6
4 files changed, 10 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 535a5187..85638c7f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2016-12-26 Gabriel Dos Reis <gdr@axiomatics.org>
+
+ * interp/i-output.boot (appChar): Don't modify string parameter.
+ * algebra/Makefile.am (strap-1/FINITE.$(FASLEXT)): Update dependency.
+
2016-01-31 Gabriel Dos Reis <gdr@axiomatics.org>
Breaking change from previous version: No more support for command
diff --git a/src/algebra/Makefile.am b/src/algebra/Makefile.am
index 4308614b..50d0f4f5 100644
--- a/src/algebra/Makefile.am
+++ b/src/algebra/Makefile.am
@@ -470,7 +470,8 @@ strap-1/ORDSET.$(FASLEXT): strap-1/SETCAT.$(FASLEXT) \
strap-1/ORDTYPE.$(FASLEXT)
strap-1/FINITE.$(FASLEXT): strap-1/SETCAT.$(FASLEXT) \
- strap-0/OAMONS.$(FASLEXT) strap-0/PI.$(FASLEXT)
+ strap-0/OAMONS.$(FASLEXT) strap-0/PI.$(FASLEXT) \
+ strap-0/LIST.$(FASLEXT)
strap-1/ORDFIN.$(FASLEXT): strap-1/ORDSET.$(FASLEXT) \
strap-1/FINITE.$(FASLEXT)
diff --git a/src/algebra/Makefile.in b/src/algebra/Makefile.in
index 48274f0b..797e0fc8 100644
--- a/src/algebra/Makefile.in
+++ b/src/algebra/Makefile.in
@@ -1980,7 +1980,8 @@ strap-1/ORDSET.$(FASLEXT): strap-1/SETCAT.$(FASLEXT) \
strap-1/ORDTYPE.$(FASLEXT)
strap-1/FINITE.$(FASLEXT): strap-1/SETCAT.$(FASLEXT) \
- strap-0/OAMONS.$(FASLEXT) strap-0/PI.$(FASLEXT)
+ strap-0/OAMONS.$(FASLEXT) strap-0/PI.$(FASLEXT) \
+ strap-0/LIST.$(FASLEXT)
strap-1/ORDFIN.$(FASLEXT): strap-1/ORDSET.$(FASLEXT) \
strap-1/FINITE.$(FASLEXT)
diff --git a/src/interp/i-output.boot b/src/interp/i-output.boot
index 9b696f0e..d035bd0b 100644
--- a/src/interp/i-output.boot
+++ b/src/interp/i-output.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-2016, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -529,12 +529,8 @@ appChar(string,x,y,d) ==
if maxIndex string = 1 and stringChar(string,0) = char "%" then
stringChar(string,1) = char "b" =>
bumpDeltaIfTrue:= true
- stringChar(string,0) := abstractChar 29
- stringChar(string,1) := abstractChar 200
stringChar(string,1) = char "d" =>
bumpDeltaIfTrue:= true
- stringChar(string,0) := abstractChar 29
- stringChar(string,1) := abstractChar 65
shiftedX:= (y=0 => x+$highlightDelta; x)
--shift x for brightening characters -- presently only if y=0
RPLACSTR(line,shiftedX,n:=#string,string,0,n)