mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
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:
parent
30d9929153
commit
e05ba0a4dc
@ -246,6 +246,10 @@
|
||||
complete rewrite of the tabular, text inset
|
||||
fax- and Ascii-Export 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
|
||||
@iE-mail: weissjp@colorado.edu
|
||||
Bugreports and suggestions,
|
||||
@ -256,6 +260,9 @@
|
||||
@iE-mail: edmar-w-jr@technologist.com
|
||||
literate programming support
|
||||
various bug fixes
|
||||
@bMate Wierdl
|
||||
@iE-mail: mw@wierdlmpc.msci.memphis.edu
|
||||
Maintainer of the @lists.lyx.org mailing-lists
|
||||
@bSerge Winitzki
|
||||
@iE-mail: winitzki@erebus.phys.cwru.edu
|
||||
updates to the Scientific Word bindings
|
||||
|
@ -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>
|
||||
|
||||
* scripts/TeXFiles.sh: new script for [cls,sty,bst]Files.lst
|
||||
|
@ -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>
|
||||
|
||||
* lyxfunc.C: removed greek_kb_flag.
|
||||
|
@ -426,6 +426,11 @@ func_status::value_type LyXFunc::getStatus(int ac,
|
||||
case LFUN_SPELLCHECK:
|
||||
disable = lyxrc.isp_command == "none";
|
||||
break;
|
||||
#ifndef HAVE_LIBAIKSAURUS
|
||||
case LFUN_THESAURUS_ENTRY:
|
||||
disable = true;
|
||||
break;
|
||||
#endif
|
||||
case LFUN_RUNCHKTEX:
|
||||
disable = lyxrc.chktex_command == "none";
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user