mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Remove dependency on TEX2LYX #define in Lexer.cpp
This commit is contained in:
parent
b293bd3670
commit
aef31d666e
@ -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
|
||||
|
@ -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)
|
||||
{}
|
||||
|
Loading…
Reference in New Issue
Block a user