]> gitweb.factorcode.org Git - factor.git/commitdiff
vm: remove -console option, seems not necessary.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sat, 26 Sep 2020 18:46:56 +0000 (11:46 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sat, 26 Sep 2020 18:46:56 +0000 (11:46 -0700)
basis/command-line/startup/startup.factor
vm/image.cpp

index 55ea43fbf7a04993848290bf79762f59f459a7ee..d046fe281dfc0bfc14ce3d613a680d6643fe79d8 100644 (file)
@@ -31,7 +31,6 @@ Options:
     -pic=<int>          max pic size [3]
     -fep                enter fep mode immediately
     -no-signals         turn off OS signal handling
-    -console            open console if possible
     -roots=<paths>      '" write os windows? ";" ":" ? write "'-separated list of extra vocab root directories
 
 Enter
index c61a0a83cd9ad94b8678a87d54aa2d8651e90c5a..149bab878856ea72f7c5b5504c5688e85502131f 100644 (file)
@@ -94,8 +94,6 @@ void vm_parameters::init_from_args(int argc, vm_char** argv) {
       fep = true;
     else if (STRCMP(arg, STRING_LITERAL("-no-signals")) == 0)
       signals = false;
-    else if (STRCMP(arg, STRING_LITERAL("-console")) == 0)
-      console = true;
   }
 }