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/matcher.h | |
parent | e6e66d4c5733b4c2e5efa686566bde3c76be4212 (diff) |
Bug 595494 - Build Failure in vte 0.21.6
Revert "Do some symbol hiding"
This reverts commit 296a3cbaf6b69555f7d6cdc639dc57c51f2e2bba.
Diffstat (limited to 'src/matcher.h')
-rw-r--r-- | src/matcher.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/matcher.h b/src/matcher.h index b6654bc..540cf97 100644 --- a/src/matcher.h +++ b/src/matcher.h @@ -53,23 +53,23 @@ struct _vte_matcher_class{ }; /* Create and init matcher. */ -VTE_STATIC struct _vte_matcher *_vte_matcher_new(const char *emulation, - struct _vte_termcap *termcap); +struct _vte_matcher *_vte_matcher_new(const char *emulation, + struct _vte_termcap *termcap); /* Free a matcher. */ -VTE_STATIC void _vte_matcher_free(struct _vte_matcher *matcher); +void _vte_matcher_free(struct _vte_matcher *matcher); /* Check if a string matches a sequence the matcher knows about. */ -VTE_STATIC const char *_vte_matcher_match(struct _vte_matcher *matcher, - const gunichar *pattern, gssize length, - const char **res, const gunichar **consumed, - GQuark *quark, GValueArray **array); +const char *_vte_matcher_match(struct _vte_matcher *matcher, + const gunichar *pattern, gssize length, + const char **res, const gunichar **consumed, + GQuark *quark, GValueArray **array); /* Dump out the contents of a matcher, mainly for debugging. */ -VTE_STATIC void _vte_matcher_print(struct _vte_matcher *matcher); +void _vte_matcher_print(struct _vte_matcher *matcher); /* Free a parameter array. */ -VTE_STATIC void _vte_matcher_free_params_array(struct _vte_matcher *matcher, GValueArray *params); +void _vte_matcher_free_params_array(struct _vte_matcher *matcher, GValueArray *params); G_END_DECLS |