summaryrefslogtreecommitdiff
path: root/appl/charon/lex.b
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2007-01-15 21:04:26 +0000
committerCharles.Forsyth <devnull@localhost>2007-01-15 21:04:26 +0000
commit8911721efbf3b3721376e2baa30bae002c2975c2 (patch)
treeaa059ffa39c2c4f1cd5ed2e137dcb9b079de2717 /appl/charon/lex.b
parent0e96539ff7cff23233d3f0a64bb285b385a3a1f4 (diff)
20070115
Diffstat (limited to 'appl/charon/lex.b')
-rw-r--r--appl/charon/lex.b2
1 files changed, 1 insertions, 1 deletions
diff --git a/appl/charon/lex.b b/appl/charon/lex.b
index 4b7274c0..3c298c6d 100644
--- a/appl/charon/lex.b
+++ b/appl/charon/lex.b
@@ -697,7 +697,7 @@ TokenSource.setchset(ts: self ref TokenSource, chset: Btos)
if (nchars > 0 && nchars < len st.s) {
# align bi to the current input char
bs := ts.b;
- (state, nil, n) := ts.chset->btos(st.prevcsstate, bs.data[st.prevbi:st.bi], nchars);
+ (nil, nil, n) := ts.chset->btos(st.prevcsstate, bs.data[st.prevbi:st.bi], nchars);
st.bi = st.prevbi + n;
st.prevbi = st.bi;
}