-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSynWeb.inc
30 lines (22 loc) · 1.1 KB
/
SynWeb.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// **************************************************************************************
// *** User configuration section --------------------------------------------------- ***
// **************************************************************************************
{$DEFINE UNISYNEDIT} // Enable SynWeb Unicode version. Comment/delete this line
// to switch SynWeb into ANSI-Version
{$DEFINE SYNWEB_FIXNULL} // Fix lines containing #0 character (#0 goes into #32).
// Temporary workaround to fix parsing
// lines containing #0 character.
// **************************************************************************************
// *** SynWeb compiler directives. Do NOT change, unless you know what are you doing! ***
// **************************************************************************************
{$I SynEdit.inc}
// Debug
{.$DEFINE DEBUG}
{$IFNDEF DEBUG}
// Turn off Overflow checking
{$Q-}
// Turn off Range checking
{$R-}
{$ENDIF}
// Turn on Boolean short-circuit evaluation
{$B-}