summaryrefslogtreecommitdiff
path: root/dviware/dvisvgm/src/Message.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dviware/dvisvgm/src/Message.cpp')
-rw-r--r--dviware/dvisvgm/src/Message.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/dviware/dvisvgm/src/Message.cpp b/dviware/dvisvgm/src/Message.cpp
index caf8051f88..e829f78e16 100644
--- a/dviware/dvisvgm/src/Message.cpp
+++ b/dviware/dvisvgm/src/Message.cpp
@@ -2,7 +2,7 @@
** Message.cpp **
** **
** This file is part of dvisvgm -- a fast DVI to SVG converter **
-** Copyright (C) 2005-2020 Martin Gieseking <martin.gieseking@uos.de> **
+** Copyright (C) 2005-2021 Martin Gieseking <martin.gieseking@uos.de> **
** **
** This program is free software; you can redistribute it and/or **
** modify it under the terms of the GNU General Public License as **
@@ -74,7 +74,7 @@ void MessageStream::putChar (char c, ostream &os) {
_col++;
}
_nl = false;
- if (!_nl || c != '\n')
+ if (c != '\n')
os << c;
}
}