removed unneeded constant GEANY_MAX_PATTERNS

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@221 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2006-02-25 22:27:11 +00:00
parent e8886e1af4
commit b1c33d8e76

View File

@ -25,8 +25,6 @@
#define GEANY_FILETYPES_H 1
#define GEANY_MAX_PATTERNS 10 // describes the count of supported extensions per filetype
enum
{
GEANY_FILETYPES_C = 0,
@ -59,7 +57,7 @@ typedef struct filetype
gboolean has_tags; // indicates whether there is a tag parser for it or not
gchar *title; // will be shown in the file open dialog
gchar *extension;
gchar *pattern[GEANY_MAX_PATTERNS];
gchar **pattern;
void (*style_func_ptr) (ScintillaObject*);
} filetype;