From 37246ed25631592271c38d4d24b154668f5ac9f1 Mon Sep 17 00:00:00 2001 From: Tore Engvig Date: Sun, 22 Apr 2001 20:02:21 +0000 Subject: [PATCH] PR: 1383 Submitted by: westbay@seaple.icc.ne.jp Patch from westbay@seaple.icc.ne.jp to use unicode escape char instead of pound sign because it was interpreted as an invalid double byte char in Japanese locale (ja_JP.EUC) and wouldn't compile. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194221 13f79535-47bb-0310-9956-ffa450edef68 --- src/org/apache/fop/fonts/Glyphs.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/apache/fop/fonts/Glyphs.java b/src/org/apache/fop/fonts/Glyphs.java index 99fc076e3..e2510f4cd 100644 --- a/src/org/apache/fop/fonts/Glyphs.java +++ b/src/org/apache/fop/fonts/Glyphs.java @@ -752,7 +752,7 @@ public class Glyphs { ' ', '\u00a1', '\u00a2', - '£', + '\u00a3', '\u00a4', '\u00a5', '\u00a6', -- 2.39.5