We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc2e6ab commit 801f004Copy full SHA for 801f004
1 file changed
core/queryparser/sparql/src/main/java/org/eclipse/rdf4j/query/parser/sparql/ast/UnicodeEscapeStream.java
@@ -91,11 +91,13 @@ else if (c == 'U') {
91
ReadByte() });
92
int cp = Integer.parseInt(hex, 16);
93
char[] chrs = Character.toChars(cp); // length of 1 or 2
94
- buffer[bufpos] = chrs[0];
+ buffer[bufpos] = c = chrs[0];
95
if (chrs.length > 1) {
96
if (++bufpos == available)
97
AdjustBuffSize();
98
buffer[bufpos] = chrs[1];
99
+ UpdateLineColumn(c);
100
+ backup(1);
101
}
102
column += hex.length();
103
0 commit comments