mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
support/Messages.cpp: add space to not be taken as user defined literal
In C++11 you are not allowed to have non-literal specifiers right after a string literal.
This commit is contained in:
parent
28ebc59517
commit
54d1cb1880
@ -119,7 +119,7 @@ bool Messages::available(string const & c)
|
||||
// this loops at most twice
|
||||
while (true) {
|
||||
string const filen = locale_dir + "/" + code
|
||||
+ "/LC_MESSAGES/"PACKAGE".mo";
|
||||
+ "/LC_MESSAGES/" PACKAGE ".mo";
|
||||
if (FileName(filen).isReadableFile())
|
||||
return true;
|
||||
if (contains(code, '_'))
|
||||
|
Loading…
Reference in New Issue
Block a user