Skip to content

Commit 28be79d

Browse files
committed
Is #663 - Reduce static alloc to as required
1 parent ccde058 commit 28be79d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/language.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222

2323
/**
2424
* This structure type provides universal access to all of Tidy's strings.
25-
* Note arbitrary limit of 256, to be changed if more...
25+
* Note limit of 8, to be changed as more added...
2626
*/
2727
typedef struct {
2828
Bool manually_set;
2929
languageDefinition *currentLanguage;
3030
languageDefinition *fallbackLanguage;
31-
languageDefinition *languages[256];
31+
languageDefinition *languages[8];
3232
} tidyLanguagesType;
3333

3434

0 commit comments

Comments
 (0)