Changes between Initial Version and Version 1 of Ticket #1789


Ignore:
Timestamp:
10/16/10 07:11:22 (14 years ago)
Author:
Jpm
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1789 – Description

    initial v1  
    11Executing the following from within SciTE will not generate a syntax error. Instead, the script will hang indefinitely between the first Msgbox() and the second.  A compiled version of the script will error out and terminate properly, so the issue occurs only when launching from within SciTE.
    22
    3 {{{#include <GuiRichEdit.au3>
     3{{{
     4#include <GuiRichEdit.au3>
    45Global $hRichEdit, $Array[2][2]
    56
     
    89MsgBox(0,"","About to freeze...")
    910$Array[1] = "X" ; bad reference to 2-dimension array should cause abend
    10 MsgBox(0,"", "I'll never get this far!")}}}
     11MsgBox(0,"", "I'll never get this far!")
     12}}}