Browse Source

* fix -Xn option

git-svn-id: trunk@14274 -
pierre 15 years ago
parent
commit
1fffaf627e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      compiler/options.pas

+ 2 - 2
compiler/options.pas

@@ -1620,9 +1620,9 @@ begin
                     'n' :
                     'n' :
                       begin
                       begin
                         If UnsetBool(More, j) then
                         If UnsetBool(More, j) then
-                          include(init_settings.globalswitches,cs_link_native)
+                          exclude(init_settings.globalswitches,cs_link_native)
                         else
                         else
-                          exclude(init_settings.globalswitches,cs_link_native);
+                          include(init_settings.globalswitches,cs_link_native);
                       end;
                       end;
 
 
                     'm' :
                     'm' :