custom option can be disabled with semicolon or dblbackslashes

This commit is contained in:
Basile Burg 2014-11-01 13:30:05 +01:00
parent 11d761c946
commit 979fb0e4c3
1 changed files with 5 additions and 0 deletions

View File

@ -916,6 +916,11 @@ var
begin
for str1 in fCustom do if str1 <> '' then
begin
if str1[1] = ';' then
continue;
if length(str1) > 1 then
if str1[1..2] = '//' then
continue;
if str1[1] <> '-' then
str2 := '-' + str1
else