diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-09-18 02:07:57 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-09-18 02:07:57 -0400 |
commit | 35cb9184e071c8629c953d5bf82542d88438552c (patch) | |
tree | c789a882b416b693c00e999c81dbc5b4624a9c81 /src/table.h | |
parent | e6e66d4c5733b4c2e5efa686566bde3c76be4212 (diff) | |
download | vte-35cb9184e071c8629c953d5bf82542d88438552c.tar.gz |
Bug 595494 - Build Failure in vte 0.21.6
Revert "Do some symbol hiding"
This reverts commit 296a3cbaf6b69555f7d6cdc639dc57c51f2e2bba.
Diffstat (limited to 'src/table.h')
-rw-r--r-- | src/table.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/table.h b/src/table.h index 583cf1f1..31989f2e 100644 --- a/src/table.h +++ b/src/table.h @@ -32,22 +32,22 @@ struct _vte_table; struct _vte_table *_vte_table_new(void); /* Free a table tree. */ -VTE_STATIC void _vte_table_free(struct _vte_table *table); +void _vte_table_free(struct _vte_table *table); /* Add a string to the matching tree. */ -VTE_STATIC void _vte_table_add(struct _vte_table *table, - const char *pattern, gssize length, - const char *result, GQuark quark); +void _vte_table_add(struct _vte_table *table, + const char *pattern, gssize length, + const char *result, GQuark quark); /* Check if a string matches something in the tree. */ -VTE_STATIC const char *_vte_table_match(struct _vte_table *table, - const gunichar *pattern, gssize length, - const char **res, const gunichar **consumed, - GQuark *quark, GValueArray **array); +const char *_vte_table_match(struct _vte_table *table, + const gunichar *pattern, gssize length, + const char **res, const gunichar **consumed, + GQuark *quark, GValueArray **array); /* Dump out the contents of a tree. */ -VTE_STATIC void _vte_table_print(struct _vte_table *table); +void _vte_table_print(struct _vte_table *table); -VTE_EXTERN const struct _vte_matcher_class _vte_matcher_table; +extern const struct _vte_matcher_class _vte_matcher_table; G_END_DECLS |