Modify ↓
#3667 closed Bug (Fixed)
Continuation line with no code on it passes Au3Check but at runtime "Error parsing function call"
| Reported by: | c.haslam | Owned by: | Jon |
|---|---|---|---|
| Milestone: | 3.3.15.5 | Component: | AutoIt |
| Version: | 3.3.14.5 | Severity: | None |
| Keywords: | Cc: |
Description
Try this script:
{{{
#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w- 4 -w 5 -w 6 -w 7
foo('cat', _
'white', _
_ ; 'black', _
'short')
Func foo($ani,$colour,$fur)
MsgBox(0,'',$colour&' '&$ani&' has '&$fur&' fur')
EndFunc
}}}
Attachments (0)
Change History (5)
comment:1 by , on Sep 25, 2018 at 9:03:56 AM
Version 0, edited on Sep 25, 2018 at 9:03:56 AM by (next)
comment:2 by , on Sep 25, 2018 at 9:07:20 AM
| Owner: | set to |
|---|---|
| Status: | new → assigned |
comment:6 by , on Oct 16, 2018 at 2:39:33 PM
@c.haslam, please stop adding stuff to the report. The basic question is clear and that is the only thing that needs to be answered in this report.
Don't know who added the AutoitUpdate image and issue, but that has been removed from this topic as there is no relation what so ever. Simply create a new issue in case you find one.
Jos
comment:5 by , on Feb 27, 2022 at 2:48:59 PM
| Milestone: | → 3.3.15.5 |
|---|---|
| Owner: | changed from to |
| Resolution: | → Fixed |
| Status: | assigned → closed |
Fixed by revision [12634] in version: 3.3.15.5
Note:
See TracTickets
for help on using tickets.

Even simpler example. This is ok:
This is not:
Jos