summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2004-06-21 18:25:34 +0000
committerOwen Taylor <otaylor@src.gnome.org>2004-06-21 18:25:34 +0000
commit235bf7483e2f6613e12644e35d3cbf1054d6ace9 (patch)
tree3f18d34a0501a155451b4024ab877bd2b5e9cd2b
parent6633c240de2d4eaf9f65407da509a54bb36372b5 (diff)
downloadpango-235bf7483e2f6613e12644e35d3cbf1054d6ace9.tar.gz
pango/modules.c (append_engines): Fix some missing statics. (#142237,
Mon Jun 21 14:23:05 2004 Owen Taylor <otaylor@redhat.com> * pango/pango-layout.c (no_shape_filter_func) pango/pango-script.c (get_pair_index): pango/modules.c (append_engines): Fix some missing statics. (#142237, Morten Welinder) * pango/mini-fribidi/fribidi_types.c: Move fribidi_type_name inside the #ifdef DEBUG.
-rw-r--r--ChangeLog10
-rw-r--r--ChangeLog.pre-1-1010
-rw-r--r--ChangeLog.pre-1-610
-rw-r--r--ChangeLog.pre-1-810
-rw-r--r--pango/mini-fribidi/fribidi_types.c4
-rw-r--r--pango/modules.c2
-rw-r--r--pango/pango-layout.c2
-rw-r--r--pango/pango-script.c2
8 files changed, 45 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 59c4f76f..4c4b06c2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+Mon Jun 21 14:23:05 2004 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-layout.c (no_shape_filter_func)
+ pango/pango-script.c (get_pair_index):
+ pango/modules.c (append_engines): Fix
+ some missing statics. (#142237, Morten Welinder)
+
+ * pango/mini-fribidi/fribidi_types.c: Move
+ fribidi_type_name inside the #ifdef DEBUG.
+
Mon Jun 21 13:55:17 2004 Owen Taylor <otaylor@redhat.com>
* pango/opentype/otlbuffer.c: Use the gcc-3.3
diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10
index 59c4f76f..4c4b06c2 100644
--- a/ChangeLog.pre-1-10
+++ b/ChangeLog.pre-1-10
@@ -1,3 +1,13 @@
+Mon Jun 21 14:23:05 2004 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-layout.c (no_shape_filter_func)
+ pango/pango-script.c (get_pair_index):
+ pango/modules.c (append_engines): Fix
+ some missing statics. (#142237, Morten Welinder)
+
+ * pango/mini-fribidi/fribidi_types.c: Move
+ fribidi_type_name inside the #ifdef DEBUG.
+
Mon Jun 21 13:55:17 2004 Owen Taylor <otaylor@redhat.com>
* pango/opentype/otlbuffer.c: Use the gcc-3.3
diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6
index 59c4f76f..4c4b06c2 100644
--- a/ChangeLog.pre-1-6
+++ b/ChangeLog.pre-1-6
@@ -1,3 +1,13 @@
+Mon Jun 21 14:23:05 2004 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-layout.c (no_shape_filter_func)
+ pango/pango-script.c (get_pair_index):
+ pango/modules.c (append_engines): Fix
+ some missing statics. (#142237, Morten Welinder)
+
+ * pango/mini-fribidi/fribidi_types.c: Move
+ fribidi_type_name inside the #ifdef DEBUG.
+
Mon Jun 21 13:55:17 2004 Owen Taylor <otaylor@redhat.com>
* pango/opentype/otlbuffer.c: Use the gcc-3.3
diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8
index 59c4f76f..4c4b06c2 100644
--- a/ChangeLog.pre-1-8
+++ b/ChangeLog.pre-1-8
@@ -1,3 +1,13 @@
+Mon Jun 21 14:23:05 2004 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-layout.c (no_shape_filter_func)
+ pango/pango-script.c (get_pair_index):
+ pango/modules.c (append_engines): Fix
+ some missing statics. (#142237, Morten Welinder)
+
+ * pango/mini-fribidi/fribidi_types.c: Move
+ fribidi_type_name inside the #ifdef DEBUG.
+
Mon Jun 21 13:55:17 2004 Owen Taylor <otaylor@redhat.com>
* pango/opentype/otlbuffer.c: Use the gcc-3.3
diff --git a/pango/mini-fribidi/fribidi_types.c b/pango/mini-fribidi/fribidi_types.c
index 8c6a00ed..b025d033 100644
--- a/pango/mini-fribidi/fribidi_types.c
+++ b/pango/mini-fribidi/fribidi_types.c
@@ -76,8 +76,6 @@ fribidi_char_from_type (FriBidiCharType c)
}
};
-#endif
-
char *
fribidi_type_name (FriBidiCharType c)
{
@@ -116,6 +114,8 @@ fribidi_type_name (FriBidiCharType c)
#undef _FRIBIDI_CASE
}
+#endif
+
/* Map fribidi_prop_types to fribidi_types. */
static FriBidiCharType fribidi_prop_to_type_array[] = {
#define _FRIBIDI_ADD_TYPE(TYPE) FRIBIDI_TYPE_##TYPE,
diff --git a/pango/modules.c b/pango/modules.c
index 5767f9fd..ceb4f2d5 100644
--- a/pango/modules.c
+++ b/pango/modules.c
@@ -652,7 +652,7 @@ pango_map_get_engine (PangoMap *map,
return NULL;
}
-void
+static void
append_engines (GSList **engine_list,
GSList *pair_list)
{
diff --git a/pango/pango-layout.c b/pango/pango-layout.c
index cf070263..16765fbe 100644
--- a/pango/pango-layout.c
+++ b/pango/pango-layout.c
@@ -2993,7 +2993,7 @@ pango_layout_get_effective_attributes (PangoLayout *layout)
return attrs;
}
-gboolean
+static gboolean
no_shape_filter_func (PangoAttribute *attribute,
gpointer data)
{
diff --git a/pango/pango-script.c b/pango/pango-script.c
index 0de2edaa..b5045c42 100644
--- a/pango/pango-script.c
+++ b/pango/pango-script.c
@@ -209,7 +209,7 @@ static const gunichar paired_chars[] = {
0x301a, 0x301b
};
-int
+static int
get_pair_index (gunichar ch)
{
int lower = 0;