patch 7.4.2069
Problem: spell.c is too big.
Solution: Split it in spell file handling and spell checking.
diff --git a/src/Make_manx.mak b/src/Make_manx.mak
index 1d8686c..6995b76 100644
--- a/src/Make_manx.mak
+++ b/src/Make_manx.mak
@@ -82,6 +82,7 @@
search.c \
sha256.c \
spell.c \
+ spellfile.c \
syntax.c \
tag.c \
term.c \
@@ -139,6 +140,7 @@
obj/search.o \
obj/sha256.o \
obj/spell.o \
+ obj/spellfile.o \
obj/syntax.o \
obj/tag.o \
obj/term.o \
@@ -194,6 +196,7 @@
proto/search.pro \
proto/sha256.pro \
proto/spell.pro \
+ proto/spellfile.pro \
proto/syntax.pro \
proto/tag.pro \
proto/term.pro \
@@ -389,6 +392,9 @@
obj/spell.o: spell.c
$(CCSYM) $@ spell.c
+obj/spellfile.o: spellfile.c
+ $(CCSYM) $@ spellfile.c
+
obj/syntax.o: syntax.c
$(CCSYM) $@ syntax.c