Custom Query
Results (13 - 15 of 3841)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3951 | No Bug | Autoit3.exe - has no digital signature | gmmg | |
Description |
the Autoit3.exe has no digital signature. is this already known? kr, gmmg |
|||
#3949 | Fixed | ArrayDisplayInternals : incorrect indication in Func ArrayDisplay_GetData | Jpm | pixelsearch |
Description |
Inside the function, when $sTemp is a 2D array, then only 1 dimension is indicated instead of 2. Reproducer : #include <Array.au3> Local $aArray[1] Local $aInternal[3][5]=[[1,2,3,4,5],[1,2,3,4,5],[1,2,3,4,5]] $aArray[0] = $aInternal _ArrayDisplay($aArray) ; will wrongly display {Array[5]} instead of {Array[3][5]} Suggested fix : instead of... Local $sSubscript = "" For $i = 1 To UBound($sTemp, 0) $sSubscript = "[" & UBound($sTemp, $i) & "]" ; line 727 (in AutoIt 3.3.16.1) Next ...this should do it : Local $sSubscript = "" For $i = 1 To UBound($sTemp, 0) $sSubscript &= "[" & UBound($sTemp, $i) & "]" Next |
|||
#3945 | Fixed | StringRegExp help about \s misses VT | Jpm | jchd18 |
Description |
PCRE v8.44 changed the meaning of character class \s to include VT as well, hence following same change in Perl. So \s is now equivalent to [[:space:]] Help should be updated to reflect the actual behavior. |
Note: See TracQuery
for help on using queries.