diff --git a/docs/notework.txt b/docs/notework.txt index 5b5f771..be34c29 100644 --- a/docs/notework.txt +++ b/docs/notework.txt @@ -10,6 +10,10 @@ ______________________________________________________________________ Notes for GoldED+ 1.1.5, /snapshot/ ______________________________________________________________________ +! Spell checking using MS Office DLL (Win32 only). Disable external + spell check program if new spell checker is enabled. See -DGCFG_NOSPELLDLL + (/DGCFG_NOSPELLDLL) compiler option. + ! Search config file sequence (*nix): command line option "-C", enviroment variable "GOLDED" (filename), diff --git a/golded.mak b/golded.mak index 814ac13..c59d4d2 100644 --- a/golded.mak +++ b/golded.mak @@ -8,17 +8,17 @@ # # to standard build or # -# NMAKE /f "golded.mak" CFG="Release" CPP_EXTRA_FLAGS=/D__GOLD_SPELL__ +# NMAKE /f "golded.mak" CFG="Release" CPP_EXTRA_FLAGS=/DGCFG_NOSPELLDLL # -# to build with spellcheck feature or +# to build without MS Office spellcheck feature or # # NMAKE /f "golded.mak" CFG="Debug" # # to build debug binary or # -# NMAKE /f "golded.mak" CFG="Debug" CPP_EXTRA_FLAGS=/D__GOLD_SPELL__ +# NMAKE /f "golded.mak" CFG="Debug" CPP_EXTRA_FLAGS=/DGCFG_NOSPELLDLL # -# to build debug binary with spellcheck feature +# to build debug binary without MS Office spellcheck feature # !IF "$(CFG)" == ""