Is #663 - Reduce static alloc to as required
This commit is contained in:
parent
ccde058772
commit
28be79db50
|
@ -22,13 +22,13 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This structure type provides universal access to all of Tidy's strings.
|
* This structure type provides universal access to all of Tidy's strings.
|
||||||
* Note arbitrary limit of 256, to be changed if more...
|
* Note limit of 8, to be changed as more added...
|
||||||
*/
|
*/
|
||||||
typedef struct {
|
typedef struct {
|
||||||
Bool manually_set;
|
Bool manually_set;
|
||||||
languageDefinition *currentLanguage;
|
languageDefinition *currentLanguage;
|
||||||
languageDefinition *fallbackLanguage;
|
languageDefinition *fallbackLanguage;
|
||||||
languageDefinition *languages[256];
|
languageDefinition *languages[8];
|
||||||
} tidyLanguagesType;
|
} tidyLanguagesType;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue