amended last change, now depends on v0.97

git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@258 4df02467-bbd4-4a76-a152-e7ce94205b78
This commit is contained in:
marcobaye 2020-06-22 20:40:38 +00:00
parent aa51fde056
commit 6c869568cd
1 changed files with 1 additions and 1 deletions

View File

@ -491,7 +491,7 @@ static void parse_binary_literal(void) // Now GotByte = "%" or "b"
}
if (!digits)
Throw_warning("Binary literal without any digits."); // FIXME - make into error!
if (digits & config.warn_bin_mask)
if ((digits & config.warn_bin_mask) && (config.wanted_version >= VER_BACKSLASHESCAPING))
Throw_first_pass_warning("Binary literal with strange number of digits.");
// set force bits
if (config.honor_leading_zeroes) {