summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-05-27 16:22:32 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-05-27 16:22:32 +0000
commit39d26cfa43cb47aaf478a180b53b2fbb52620534 (patch)
tree5c38c339605d6facefb82cb1f43afdabb9529040
parent0a0e6dfabc1532f03d68c1f154956a501a3aa31d (diff)
downloadpango-39d26cfa43cb47aaf478a180b53b2fbb52620534.tar.gz
Claim to handle everything as a fallback (#106354, Simon Budig)
Tue May 27 12:19:53 2003 Owen Taylor <otaylor@redhat.com> * modules/basic/basic-ft2.c: Claim to handle everything as a fallback (#106354, Simon Budig) * examples/pangoft2topgm.c (main): Add code to check for "./pangorc" so that it works uninstalled.
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLog.pre-1-108
-rw-r--r--ChangeLog.pre-1-48
-rw-r--r--ChangeLog.pre-1-68
-rw-r--r--ChangeLog.pre-1-88
-rw-r--r--examples/pangoft2topgm.c3
-rw-r--r--examples/renderdemo.c3
-rw-r--r--modules/basic/basic-ft2.c5
8 files changed, 50 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fde5826a..e1d4b408 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Tue May 27 12:19:53 2003 Owen Taylor <otaylor@redhat.com>
+
+ * modules/basic/basic-ft2.c: Claim to handle everything
+ as a fallback (#106354, Simon Budig)
+
+ * examples/pangoft2topgm.c (main): Add code to check
+ for "./pangorc" so that it works uninstalled.
+
Fri May 2 17:20:23 2003 Owen Taylor <otaylor@redhat.com>
* pango/mapping.c (pango_glyph_string_x_to_index):
diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10
index fde5826a..e1d4b408 100644
--- a/ChangeLog.pre-1-10
+++ b/ChangeLog.pre-1-10
@@ -1,3 +1,11 @@
+Tue May 27 12:19:53 2003 Owen Taylor <otaylor@redhat.com>
+
+ * modules/basic/basic-ft2.c: Claim to handle everything
+ as a fallback (#106354, Simon Budig)
+
+ * examples/pangoft2topgm.c (main): Add code to check
+ for "./pangorc" so that it works uninstalled.
+
Fri May 2 17:20:23 2003 Owen Taylor <otaylor@redhat.com>
* pango/mapping.c (pango_glyph_string_x_to_index):
diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4
index fde5826a..e1d4b408 100644
--- a/ChangeLog.pre-1-4
+++ b/ChangeLog.pre-1-4
@@ -1,3 +1,11 @@
+Tue May 27 12:19:53 2003 Owen Taylor <otaylor@redhat.com>
+
+ * modules/basic/basic-ft2.c: Claim to handle everything
+ as a fallback (#106354, Simon Budig)
+
+ * examples/pangoft2topgm.c (main): Add code to check
+ for "./pangorc" so that it works uninstalled.
+
Fri May 2 17:20:23 2003 Owen Taylor <otaylor@redhat.com>
* pango/mapping.c (pango_glyph_string_x_to_index):
diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6
index fde5826a..e1d4b408 100644
--- a/ChangeLog.pre-1-6
+++ b/ChangeLog.pre-1-6
@@ -1,3 +1,11 @@
+Tue May 27 12:19:53 2003 Owen Taylor <otaylor@redhat.com>
+
+ * modules/basic/basic-ft2.c: Claim to handle everything
+ as a fallback (#106354, Simon Budig)
+
+ * examples/pangoft2topgm.c (main): Add code to check
+ for "./pangorc" so that it works uninstalled.
+
Fri May 2 17:20:23 2003 Owen Taylor <otaylor@redhat.com>
* pango/mapping.c (pango_glyph_string_x_to_index):
diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8
index fde5826a..e1d4b408 100644
--- a/ChangeLog.pre-1-8
+++ b/ChangeLog.pre-1-8
@@ -1,3 +1,11 @@
+Tue May 27 12:19:53 2003 Owen Taylor <otaylor@redhat.com>
+
+ * modules/basic/basic-ft2.c: Claim to handle everything
+ as a fallback (#106354, Simon Budig)
+
+ * examples/pangoft2topgm.c (main): Add code to check
+ for "./pangorc" so that it works uninstalled.
+
Fri May 2 17:20:23 2003 Owen Taylor <otaylor@redhat.com>
* pango/mapping.c (pango_glyph_string_x_to_index):
diff --git a/examples/pangoft2topgm.c b/examples/pangoft2topgm.c
index f00294f6..40d6bd21 100644
--- a/examples/pangoft2topgm.c
+++ b/examples/pangoft2topgm.c
@@ -146,6 +146,9 @@ int main(int argc, char *argv[])
char *prog_name = g_path_get_basename (argv[0]);
g_type_init();
+
+ if (g_file_test ("./pangorc", G_FILE_TEST_EXISTS))
+ putenv ("PANGO_RC_FILE=./pangorc");
/* Parse command line */
argp=1;
diff --git a/examples/renderdemo.c b/examples/renderdemo.c
index f00294f6..40d6bd21 100644
--- a/examples/renderdemo.c
+++ b/examples/renderdemo.c
@@ -146,6 +146,9 @@ int main(int argc, char *argv[])
char *prog_name = g_path_get_basename (argv[0]);
g_type_init();
+
+ if (g_file_test ("./pangorc", G_FILE_TEST_EXISTS))
+ putenv ("PANGO_RC_FILE=./pangorc");
/* Parse command line */
argp=1;
diff --git a/modules/basic/basic-ft2.c b/modules/basic/basic-ft2.c
index e1f65a42..09971053 100644
--- a/modules/basic/basic-ft2.c
+++ b/modules/basic/basic-ft2.c
@@ -98,9 +98,12 @@ static PangoEngineRange basic_ranges[] = {
*/
/* Halfwidth and Fullwidth Forms (partly) */
- { 0xff00, 0xffe3, "*" }
+ { 0xff00, 0xffe3, "*" },
/* Not covered: Halfwidth and Fullwidth Forms, Specials */
+
+ /* Claim to handle everything as a fallback */
+ { 0x0000, 0xffff, "" }
};
static PangoEngineInfo script_engines[] = {