Allow explicit decimal point after .RADIX argument.

This commit is contained in:
Paul Koning
2022-06-26 14:44:21 -04:00
parent 0721a35400
commit 5f71c6b7c3

View File

@@ -349,6 +349,9 @@ do_mcalled_macro:
report(stack->top, "Illegal radix\n");
return 0;
}
/* Sometimes a decimal point appears after the value */
if (*cp == '.')
cp++;
return CHECK_EOL;
}