aboutsummaryrefslogtreecommitdiff
path: root/src/interp/msgdb.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-12-19 16:04:55 +0000
committerdos-reis <gdr@axiomatics.org>2010-12-19 16:04:55 +0000
commit0baf7a71d80fc15fdab5caa551b7e00800dccbef (patch)
tree859d6581ba133d0123a27d7e82f0c64b5aea46bc /src/interp/msgdb.boot
parentba495f17f8e3a8b780f038fd6f2d5877ccc2476e (diff)
downloadopen-axiom-0baf7a71d80fc15fdab5caa551b7e00800dccbef.tar.gz
* interp/vmlisp.lisp (VECP): Remove.
(REFVECP): Likewise. (CVECP): Likewise. (QMEMQ): Likewise. * interp/bootlex.lisp (TRANSLABEL1): Adjust. * interp/br-search.boot: Likewise. * interp/br-util.boot: Likewise. * interp/c-doc.boot: Likewise. * interp/category.boot: Likewise. * interp/database.boot: Likewise. * interp/debug.lisp: Likewise. * interp/format.boot: Likewise. * interp/functor.boot: Likewise. * interp/g-cndata.boot: Likewise. * interp/g-util.boot: Likewise. * interp/ggreater.lisp: Likewise. * interp/guess.boot: Likewise. * interp/i-coerfn.boot: Likewise. * interp/i-map.boot: Likewise. * interp/i-output.boot: Likewise. * interp/i-resolv.boot: Likewise. * interp/i-spec2.boot: Likewise. * interp/i-syscmd.boot: Likewise. * interp/interop.boot: Likewise. * interp/i-util.boot: Likewise. * interp/union.lisp: Likewise. * interp/trace.boot: Likewise. * interp/pspad2.boot: Likewise. * interp/pathname.boot: Likewise. * interp/nrunopt.boot: Likewise. * interp/nrunfast.boot: Likewise. * interp/nruncomp.boot: Likewise. * interp/newfort.boot: Likewise. * interp/msgdb.boot: Likewise. * interp/msg.boot: Likewise. * interp/match.boot: Likewise. * interp/word.boot: Likewise.
Diffstat (limited to 'src/interp/msgdb.boot')
-rw-r--r--src/interp/msgdb.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/msgdb.boot b/src/interp/msgdb.boot
index 7bc7cc3c..6d7ed990 100644
--- a/src/interp/msgdb.boot
+++ b/src/interp/msgdb.boot
@@ -267,7 +267,7 @@ $msgdbListPrims == '(%m %s %ce %rj "%m" "%s" "%ce" "%rj")
noBlankBeforeP word==
integer? word => false
member(word,$msgdbNoBlanksBeforeGroup) => true
- if string? word and SIZE word > 1 then
+ if string? word and # word > 1 then
word.0 = char '% and word.1 = char 'x => return true
word.0 = char " " => return true
(cons? word) and member(first word,$msgdbListPrims) => true
@@ -279,7 +279,7 @@ $msgdbNoBlanksAfterGroup == ['" ", " ",'"%" ,"%", :$msgdbPrims,
noBlankAfterP word==
integer? word => false
member(word,$msgdbNoBlanksAfterGroup) => true
- if string? word and (s := SIZE word) > 1 then
+ if string? word and (s := # word) > 1 then
word.0 = char '% and word.1 = char 'x => return true
word.(s-1) = char " " => return true
(cons? word) and member(first word, $msgdbListPrims) => true
@@ -807,7 +807,7 @@ sayBrightlyLength1 x ==
sayAsManyPerLineAsPossible l ==
-- it is assumed that l is a list of strings
l := [atom2String a for a in l]
- m := 1 + "MAX"/[SIZE(a) for a in l]
+ m := 1 + "MAX"/[# a for a in l]
-- w will be the field width in which we will display the elements
m > $LINELENGTH =>
for a in l repeat sayMSG a