Kaydet (Commit) b1c33d8e authored tarafından Enrico Tröger's avatar Enrico Tröger

removed unneeded constant GEANY_MAX_PATTERNS


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@221 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst e8886e1a
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment