Remove dependency on TEX2LYX #define in Lexer.cpp

This commit is contained in:
Jean-Marc Lasgouttes 2013-08-21 11:31:55 +02:00 committed by Vincent van Ravesteijn
parent b293bd3670
commit aef31d666e
2 changed files with 13 additions and 7 deletions

View File

@ -238,14 +238,8 @@ void Lexer::Pimpl::popTable()
bool Lexer::Pimpl::setFile(FileName const & filename)
{
#ifdef TEX2LYX
// tex2lyx does not read lyxrc and therefore can't really check for
// zipped formats.
if (false) {
#else
// Check the format of the file.
if (formats.isZippedFile(filename)) {
#endif
LYXERR(Debug::LYXLEX, "lyxlex: compressed");
// The check only outputs a debug message, because it triggers
// a bug in compaq cxx 6.2, where is_open() returns 'true' for

View File

@ -17,6 +17,7 @@
#include "Context.h"
#include "Encoding.h"
#include "Format.h"
#include "Layout.h"
#include "LayoutFile.h"
#include "LayoutModuleList.h"
@ -77,7 +78,7 @@ public:
// Dummy translation support
Messages messages_;
Messages const & getMessages(std::string const &)
Messages const & getMessages(string const &)
{
return messages_;
}
@ -89,6 +90,17 @@ Messages const & getGuiMessages()
}
// tex2lyx does not read lyxrc and therefore can't really check for
// zipped formats (Used by lexer)
Formats formats;
bool Formats::isZippedFile(FileName const&) const
{
return false;
}
// Keep the linker happy on Windows
void lyx_exit(int)
{}