From e05ba0a4dc716dc48711737f5362343b622450ba Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Thu, 11 Oct 2001 10:29:41 +0000 Subject: [PATCH] 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 --- lib/CREDITS | 7 +++++++ lib/ChangeLog | 4 ++++ src/ChangeLog | 5 +++++ src/lyxfunc.C | 5 +++++ 4 files changed, 21 insertions(+) diff --git a/lib/CREDITS b/lib/CREDITS index e514263682..3eef3e7f7d 100644 --- a/lib/CREDITS +++ b/lib/CREDITS @@ -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 diff --git a/lib/ChangeLog b/lib/ChangeLog index fd70bc9d65..cc1d2ec77b 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2001-10-11 Jean-Marc Lasgouttes + + * CREDITS: add two unsung heroes + 2001-10-10 Herbert Voss * scripts/TeXFiles.sh: new script for [cls,sty,bst]Files.lst diff --git a/src/ChangeLog b/src/ChangeLog index adbe12a687..4bc402048d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-10-11 Jean-Marc Lasgouttes + + * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library + is not available. + 2001-10-10 André Pönitz * lyxfunc.C: removed greek_kb_flag. diff --git a/src/lyxfunc.C b/src/lyxfunc.C index 686b8558b7..3ac2af1e92 100644 --- a/src/lyxfunc.C +++ b/src/lyxfunc.C @@ -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; -- 2.39.2