aboutsummaryrefslogtreecommitdiff
path: root/src/interp/g-util.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/g-util.boot')
-rw-r--r--src/interp/g-util.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/g-util.boot b/src/interp/g-util.boot
index 4495805f..89254289 100644
--- a/src/interp/g-util.boot
+++ b/src/interp/g-util.boot
@@ -421,9 +421,9 @@ centerString(text,width,fillchar) ==
f := DIVIDE(width - wid,2)
fill1 := ""
for i in 1..(f.0) repeat
- fill1 := STRCONC(fillchar,fill1)
+ fill1 := strconc(fillchar,fill1)
fill2:= fill1
- if f.1 ~= 0 then fill1 := STRCONC(fillchar,fill1)
+ if f.1 ~= 0 then fill1 := strconc(fillchar,fill1)
[fill1,text,fill2]
stringPrefix?(pref,str) ==
@@ -541,7 +541,7 @@ isLetter c ==
update() ==
runCommand
- STRCONC(textEditor(), '" ",STRINGIMAGE _/VERSION,'" ",STRINGIMAGE _/WSNAME,'" A")
+ strconc(textEditor(), '" ",STRINGIMAGE _/VERSION,'" ",STRINGIMAGE _/WSNAME,'" A")
_/UPDATE()
--% Inplace Merge Sort for Lists