-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #483: Umlauts and other diacritics cause wrong line wrap
- Loading branch information
1 parent
e25db5b
commit 4c169e1
Showing
4 changed files
with
115 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
112 changes: 107 additions & 5 deletions
112
RSyntaxTextArea/src/main/java/org/fife/ui/rsyntaxtextarea/modes/PlainTextTokenMaker.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,7 +76,8 @@ void testIdentifiers() { | |
"foo", | ||
"foo999", | ||
"912", | ||
"FooBar" | ||
"FooBar", | ||
"unn\u00f6tig" | ||
); | ||
} | ||
|
||
|