mirror of https://gitlab.com/basile.b/dexed.git
custom option can be disabled with semicolon or dblbackslashes
This commit is contained in:
parent
11d761c946
commit
979fb0e4c3
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue