Fix bug 5263

http://bugzilla.lyx.org/show_bug.cgi?id=5263


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27020 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2008-10-22 09:11:42 +00:00
parent c14f945f5b
commit 946287b882

View File

@ -76,6 +76,9 @@ MathWordList theWordList;
bool isMathFontAvailable(docstring & name)
{
if (!use_gui)
return false;
FontInfo f;
augmentFont(f, name);
@ -97,9 +100,6 @@ bool isMathFontAvailable(docstring & name)
void initSymbols()
{
if (!use_gui)
return;
FileName const filename = libFileSearch(string(), "symbols");
LYXERR(Debug::MATHED, "read symbols from " << filename);
if (filename.empty()) {