ack icon indicating copy to clipboard operation
ack copied to clipboard

strange code in cemcom.ansi/l_misc.c

Open kernigh opened this issue 6 years ago • 0 comments

cemcom.ansi/l_misc.c lint_conversion() line 292 has the code,

			if (val < 256)
				from_fund = CHAR;
			else if (val < 256)
				from_fund = SHORT;

I suspect that the 2nd constant 256 should be larger, because right now, there is no way to reach the SHORT assignment. I don't know what this code does, nor how to fix it.

kernigh avatar Aug 29 '19 23:08 kernigh