mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-23 17:59:07 +02:00
+ use reinstated browser switches
git-svn-id: trunk@6139 -
This commit is contained in:
parent
95b126b364
commit
11be490034
@ -443,7 +443,23 @@ begin
|
||||
|
||||
'b' :
|
||||
begin
|
||||
Message1(option_obsolete_switch,'-b');
|
||||
// Message1(option_obsolete_switch,'-b');
|
||||
if UnsetBool(More,0) then
|
||||
begin
|
||||
init_settings.moduleswitches:=init_settings.moduleswitches-[cs_browser];
|
||||
init_settings.moduleswitches:=init_settings.moduleswitches-[cs_local_browser];
|
||||
end
|
||||
else
|
||||
begin
|
||||
init_settings.moduleswitches:=init_settings.moduleswitches+[cs_browser];
|
||||
end;
|
||||
if More<>'' then
|
||||
if (More='l') or (More='l+') then
|
||||
init_settings.moduleswitches:=init_settings.moduleswitches+[cs_local_browser]
|
||||
else if More='l-' then
|
||||
init_settings.moduleswitches:=init_settings.moduleswitches-[cs_local_browser]
|
||||
else
|
||||
IllegalPara(opt);
|
||||
end;
|
||||
|
||||
'B' :
|
||||
|
Loading…
Reference in New Issue
Block a user