From 344fce0b7c835a105e00d13ec3edf9b725bd9b16 Mon Sep 17 00:00:00 2001 From: Stas Degteff Date: Sat, 21 Jan 2006 01:02:44 +0000 Subject: [PATCH] Replace macro __GOLD_SPELL__ with GCFG_NOSPELLDLL; DLL-speller allowed only for Win32; external spellcheck program is disabled if DLL-speller is enabled --- docs/notework.txt | 4 ++++ golded.mak | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) 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)" == ""