Skip to content

Commit

Permalink
Merge 1fc1590 into f21ab8b
Browse files Browse the repository at this point in the history
  • Loading branch information
gijsbert802 committed Apr 28, 2017
2 parents f21ab8b + 1fc1590 commit c56d737
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -577,8 +577,8 @@ else if (c.equals("sect"))
else if (c.charAt(0) == '#') {
if (isInteger(c.substring(1), 10))
s.append((char) Integer.parseInt(c.substring(1)));
else if (isInteger(c.substring(1), 16))
s.append((char) Integer.parseInt(c.substring(1), 16));
else if (c.charAt(1) == 'x' && isInteger(c.substring(2), 16))
s.append((char) Integer.parseInt(c.substring(2), 16));
} else if (c.equals("fnof"))
s.append((char) 402); // latin small f with hook = function = florin, U+0192 ISOtech -->
else if (c.equals("Alpha"))
Expand Down

0 comments on commit c56d737

Please sign in to comment.