mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Fix display of comment char in "lyxlex" debug channel
This commit is contained in:
parent
999b95398d
commit
430c41cd05
@ -300,7 +300,7 @@ bool Lexer::Pimpl::next(bool esc /* = false */)
|
||||
string dummy;
|
||||
getline(is, dummy);
|
||||
|
||||
LYXERR(Debug::LYXLEX, "Comment read: `" << c << dummy << '\'');
|
||||
LYXERR(Debug::LYXLEX, "Comment read: `" << string(1, c) << dummy << '\'');
|
||||
#else
|
||||
// unfortunately ignore is buggy (Lgb)
|
||||
is.ignore(100, '\n');
|
||||
|
Loading…
Reference in New Issue
Block a user