diff --git a/cfg/windows.cfg b/cfg/windows.cfg index 693397532..79f117654 100644 --- a/cfg/windows.cfg +++ b/cfg/windows.cfg @@ -1771,7 +1771,7 @@ HFONT CreateFont( --> false - + diff --git a/lib/mathlib.cpp b/lib/mathlib.cpp index 714528b69..0d55414b7 100644 --- a/lib/mathlib.cpp +++ b/lib/mathlib.cpp @@ -400,7 +400,7 @@ MathLib::bigint MathLib::characterLiteralToLongNumber(const std::string& str) c = str[1]; break; default: - throw InternalError(0, "Internal Error. MathLib::toLongNumber: Unhandled char constant " + str); + throw InternalError(0, "Internal Error. MathLib::toLongNumber: Unhandled char constant '" + str + "'."); } return c & 0xff; case 2: @@ -413,7 +413,7 @@ MathLib::bigint MathLib::characterLiteralToLongNumber(const std::string& str) } } - throw InternalError(0, "Internal Error. MathLib::toLongNumber: Unhandled char constant " + str); + throw InternalError(0, "Internal Error. MathLib::toLongNumber: Unhandled char constant '" + str + "'."); } MathLib::bigint MathLib::toLongNumber(const std::string & str)