Hi Hans, merging produces invalid output when concatenating a numbers into a string. Example: return 42 .. "foo" which is merged into: return 42.."foo" ^ where the dot after the number leads to a “malformed number” error. (Iirc there was a thread on lua-l about this not long ago.) Regards Philipp
On 4/11/2013 12:00 PM, Philipp Gesang wrote:
Hi Hans,
merging produces invalid output when concatenating a numbers into a string. Example:
return 42 .. "foo"
which is merged into:
return 42.."foo" ^
where the dot after the number leads to a “malformed number” error. (Iirc there was a thread on lua-l about this not long ago.)
ok. fixed in next Hans ----------------------------------------------------------------- Hans Hagen | PRAGMA ADE Ridderstraat 27 | 8061 GH Hasselt | The Netherlands tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com | www.pragma-pod.nl -----------------------------------------------------------------
···
On 4/11/2013 12:00 PM, Philipp Gesang wrote:
Hi Hans,
merging produces invalid output when concatenating a numbers into a string. Example:
return 42 .. "foo"
which is merged into:
return 42.."foo" ^
where the dot after the number leads to a “malformed number” error. (Iirc there was a thread on lua-l about this not long ago.)
ok. fixed in next
Many thanks! Philipp
participants (2)
-
Hans Hagen
-
Philipp Gesang