Fix menu marker in unix-like

This commit is contained in:
Stas Degteff 2011-03-15 08:27:39 +00:00
parent df680ee6c9
commit 2700dbfbc2

View File

@ -1138,7 +1138,11 @@ int GMenuSChecker::Run(CSpellChecker &schecker, const char *word)
}
}
buff += loaded ? '\x10' : ' ';
#ifdef __USE_NCURSES__
buff += loaded ? '>' : ' ';
#else
buff += loaded ? MMRK_MARK : ' ';
#endif
#if !(defined(GCFG_NO_MSSPELL) || defined(GCFG_NO_MYSPELL))
if (type == SCHECKET_TYPE_MSSPELL)