disable thesaurus entry when aiksaurus not found ; add Herbert and Mate to CREDITS

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2861 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2001-10-11 10:29:41 +00:00
parent 30d9929153
commit e05ba0a4dc
4 changed files with 21 additions and 0 deletions

View File

@ -246,6 +246,10 @@
complete rewrite of the tabular, text inset complete rewrite of the tabular, text inset
fax- and Ascii-Export support fax- and Ascii-Export support
iletter and dinbrief support iletter and dinbrief support
@bHerbert Voss
@iE-mail: voss@perce.org
The one who answers all questions on lyx-users
mailing list
@bJohn P. Weiss @bJohn P. Weiss
@iE-mail: weissjp@colorado.edu @iE-mail: weissjp@colorado.edu
Bugreports and suggestions, Bugreports and suggestions,
@ -256,6 +260,9 @@
@iE-mail: edmar-w-jr@technologist.com @iE-mail: edmar-w-jr@technologist.com
literate programming support literate programming support
various bug fixes various bug fixes
@bMate Wierdl
@iE-mail: mw@wierdlmpc.msci.memphis.edu
Maintainer of the @lists.lyx.org mailing-lists
@bSerge Winitzki @bSerge Winitzki
@iE-mail: winitzki@erebus.phys.cwru.edu @iE-mail: winitzki@erebus.phys.cwru.edu
updates to the Scientific Word bindings updates to the Scientific Word bindings

View File

@ -1,3 +1,7 @@
2001-10-11 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* CREDITS: add two unsung heroes
2001-10-10 Herbert Voss <voss@perce.de> 2001-10-10 Herbert Voss <voss@perce.de>
* scripts/TeXFiles.sh: new script for [cls,sty,bst]Files.lst * scripts/TeXFiles.sh: new script for [cls,sty,bst]Files.lst

View File

@ -1,3 +1,8 @@
2001-10-11 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
is not available.
2001-10-10 André Pönitz <poenitz@gmx.net> 2001-10-10 André Pönitz <poenitz@gmx.net>
* lyxfunc.C: removed greek_kb_flag. * lyxfunc.C: removed greek_kb_flag.

View File

@ -426,6 +426,11 @@ func_status::value_type LyXFunc::getStatus(int ac,
case LFUN_SPELLCHECK: case LFUN_SPELLCHECK:
disable = lyxrc.isp_command == "none"; disable = lyxrc.isp_command == "none";
break; break;
#ifndef HAVE_LIBAIKSAURUS
case LFUN_THESAURUS_ENTRY:
disable = true;
break;
#endif
case LFUN_RUNCHKTEX: case LFUN_RUNCHKTEX:
disable = lyxrc.chktex_command == "none"; disable = lyxrc.chktex_command == "none";
break; break;