lex: s/scanrune/read_rune/
1 files changed, 1 insertions(+), 1 deletions(-) M c/lex/lex.ha
M c/lex/lex.ha => c/lex/lex.ha +1 -1
@@ 825,7 825,7 @@ fn nextraw(lexr: *lexer) (rune | io::EOF | error) = { return io::EOF; }; // XXX: remove error propagation once harec bug is fixed return bufio::scanrune(getstream(lexr))?; return bufio::read_rune(getstream(lexr))?; }; // Returns whether the lexer is at EOF, i.e. the end of the stream initially