diff options
author | Tore Engvig <tore@apache.org> | 2001-08-01 09:52:43 +0000 |
---|---|---|
committer | Tore Engvig <tore@apache.org> | 2001-08-01 09:52:43 +0000 |
commit | a5bc30d4a3977d60f0e70c2792bc4e3a37913a3d (patch) | |
tree | 7aa991823f7bc7843c3f7db415eb5503004e8447 /src/org/apache/fop/fonts | |
parent | 167aeaca5378fef7058b40ba21483a0f678fcb2a (diff) | |
download | xmlgraphics-fop-a5bc30d4a3977d60f0e70c2792bc4e3a37913a3d.tar.gz xmlgraphics-fop-a5bc30d4a3977d60f0e70c2792bc4e3a37913a3d.zip |
Submitted by: Sasaki Suguru (s-sasaki@hkg.odn.ne.jp)
Fixes for unicode escapes that were removed during code formatting
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194384 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/fonts')
-rw-r--r-- | src/org/apache/fop/fonts/Glyphs.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/org/apache/fop/fonts/Glyphs.java b/src/org/apache/fop/fonts/Glyphs.java index 8f30bd995..e5944031e 100644 --- a/src/org/apache/fop/fonts/Glyphs.java +++ b/src/org/apache/fop/fonts/Glyphs.java @@ -131,14 +131,14 @@ public class Glyphs { // not used until char 32 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 0x20 - ' ', '\0021', '\"', '\u0023', '$', '%', '&', '\'', '(', ')', '*', '+', ',', + ' ', '\u0021', '\"', '\u0023', '$', '%', '&', '\'', '(', ')', '*', '+', ',', '\u002d', '\u002e', '/', // 0x30 '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';', '<', '=', '>', '?', '@', // 0x40 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', // 0x50 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '\u005b', '\\', - '\u005e', '^', '_', // 0x60 + '\u005d', '^', '_', // 0x60 '\u2018', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', // 0x70 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '\u007b', '\u007c', '\u007d', @@ -156,7 +156,7 @@ public class Glyphs { '\u0161', '\u203a', '\u0153', '\u2022', '\u017e', '\u0178', // 0xA0 ' ', '\u00a1', '\u00a2', '\u00a3', '\u00a4', '\u00a5', '\u00a6', '\u00a7', '\u00a8', '\u00a9', '\u00aa', '\u00ab', - '\u00ac', '\u00ad', '\u00ad', '\u00af', // 0xb0 + '\u00ac', '\u00ad', '\u00ae', '\u00af', // 0xb0 '\u00b0', '\u00b1', '\u00b2', '\u00b3', '\u00b4', '\u00b5', // This is hand-coded, the rest is assumption '\u00b6', // and *might* not be correct... |