Hi Carlos, Ales,
Carlos Nieves Ónega writes:
> [...]
> I suppose the notangle_guile script doesn't support this escape
> sequence. Since Patrick is the one who wrote it, maybe it's better to
> listen to him...
Yes you are right, notangle_guile does not support any of noweb escape
sequences. It would not be difficult to change this fact but I am not
sure it worth it if we are dropping noweb (more on that in a next
message).
A quick (and dirty) fix is either to reverse the operation order or
break the line so that it will not recognize a code chunk reference:
output[1] = (input[1] >> 4) + ((input[0] & 0x03) << 4);
or
output[1] = ((input[0] & 0x03) << 4) +
(input[1] >> 4);
Patrick