Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
add missing break for \K
· ee4bafb1
Marcin Mielzynski
authored
May 21, 2019
ee4bafb1
[maven-release-plugin] prepare release joni-2.1.28
· 9e2c76c6
Marcin Mielzynski
authored
May 21, 2019
9e2c76c6
[maven-release-plugin] prepare for next development iteration
· 97727ccc
Marcin Mielzynski
authored
May 21, 2019
97727ccc
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
97727ccc
...
...
@@ -4,7 +4,7 @@
<groupId>
org.jruby.joni
</groupId>
<artifactId>
joni
</artifactId>
<packaging>
jar
</packaging>
<version>
2.1.2
8
-SNAPSHOT
</version>
<version>
2.1.2
9
-SNAPSHOT
</version>
<name>
Joni
</name>
<description>
Java port of Oniguruma: http://www.geocities.jp/kosako3/oniguruma
...
...
src/org/joni/Lexer.java
View file @
97727ccc
...
...
@@ -1161,6 +1161,7 @@ class Lexer extends ScannerSupport {
break
;
case
'K'
:
if
(
syntax
.
op2EscCapitalKKeep
())
token
.
type
=
TokenType
.
KEEP
;
break
;
default
:
unfetch
();
fetchEscapedValue
();
...
...