aboutsummaryrefslogtreecommitdiff
path: root/src/interp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp')
-rw-r--r--src/interp/io.boot3
-rw-r--r--src/interp/match.boot9
2 files changed, 0 insertions, 12 deletions
diff --git a/src/interp/io.boot b/src/interp/io.boot
index 2191c3d8..f7a35617 100644
--- a/src/interp/io.boot
+++ b/src/interp/io.boot
@@ -93,9 +93,6 @@ expandLeadingTabs line ==
nbLoc = indLoc => line
strconc(makeString(indLoc,char " "), subString(line,nbLoc))
-findChar(c,s,k == 0) ==
- or/[i for i in k..maxIndex s | stringChar(s,i) = c]
-
++ Find the position at which `s1' matches a substring of `s2',
++ starting from `k'. Return nil on failure.
findString(s1,s2,k == 0) ==
diff --git a/src/interp/match.boot b/src/interp/match.boot
index 7e8144f9..b8c92e10 100644
--- a/src/interp/match.boot
+++ b/src/interp/match.boot
@@ -56,15 +56,6 @@ anySubstring?(part,whole,startpos) ==
or/[((k := i) and "and"/[CHAR_-EQUAL(part.ip,whole.iw)
for ip in 0..np - 1 for iw in i..]) for i in startpos..nw - np] => k
-charPosition(c,t,startpos) ==
- n := # t
- startpos < 0 or startpos > n => n
- k:= startpos
- for i in startpos .. n-1 repeat
- c = t.i => return nil
- k := k+1
- k
-
rightCharPosition(c,t,startpos) == --startpos often equals maxIndex t (rightmost)
k := startpos
for i in startpos..0 by -1 while c ~= stringChar(t,i) repeat (k := k - 1)