Hmmm okay, here is a small example from Glenn's code.
In preview mode it does not break long lines.





Break On
Dim $SO
$SO=SetOption('Explicit','On')
$SO=SetOption('NoVarsInStrings','On')
$SO=SetOption('NoMacrosInStrings','On')
$SO=SetOption('WrapAtEOL','On')


Dim $Locale, $LocaleAllowed, $RC

;Check if the computer is running an ENGLISH version of Windows and if not then quit.
$Locale = ReadValue('HKU\.DEFAULT\Control Panel\International','Locale')
$LocaleAllowed = Split('00000409|00011009|00001809','|')
If AScan ($LocaleAllowed, $Locale)>=0
; OS is English so continue...
Else
$RC = MessageBox('Your Operating System does not appear to be English. This fix was only designed for Windows XP English'+@CRLF+'This repair utility will now quit.', 'OS Language Check', 4112)
Quit 10
EndIf