diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-09-02 17:56:50 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-09-02 17:56:50 +0000 |
commit | ef85fe81cdb895ab5ff8b6c87267103e00003fe9 (patch) | |
tree | a94d9dfa1b959633b44504ed31516acd0a30c8ef /pango/pango-utils.c | |
parent | 2df85022f0e80a1f0bd764293b74271e9f4abf34 (diff) | |
download | pango-ef85fe81cdb895ab5ff8b6c87267103e00003fe9.tar.gz |
Make a couple of functions static.
Sun Sep 2 12:08:15 2001 Owen Taylor <otaylor@redhat.com>
* pango/pango-layout.c pango/pango-utils.c: Make
a couple of functions static.
* pango/mini-fribidi/{fribidi_tables.i,fribidi.patch}:
Make data arrays static.
Diffstat (limited to 'pango/pango-utils.c')
-rw-r--r-- | pango/pango-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pango/pango-utils.c b/pango/pango-utils.c index a899f510..6516c022 100644 --- a/pango/pango-utils.c +++ b/pango/pango-utils.c @@ -1054,7 +1054,7 @@ typedef struct { const char *str; } LangInfo; -int +static int lang_info_compare (const void *key, const void *val) { const LangInfo *lang_info = val; @@ -1067,7 +1067,7 @@ lang_info_compare (const void *key, const void *val) * in the following have sufficient text to excercise all the accents for the language, and * there are obviously many more languages to include as well. */ -LangInfo lang_texts[] = { +static LangInfo lang_texts[] = { { "ar", "Arabic السلام عليكم" }, { "cs", "Czech (česky) Dobrý den" }, { "da", "Danish (Dansk) Hej, Goddag" }, |