Changeset 13142


Ignore:
Timestamp:
01/13/11 22:29:41 (12 years ago)
Author:
ehuelsmann
Message:

Mark exit() invocations as FIXME. I'll address later.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/Interpreter.java

    r13138 r13142  
    9090            out._writeString(help());
    9191            out._finishOutput();
    92             exit(0);
     92            exit(0); // FIXME
    9393        }
    9494        if (noinform)
     
    254254                    } else {
    255255                        System.err.println("No argument supplied to --eval");
    256                         exit(1);
     256                        exit(1); // FIXME
    257257                    }
    258258                } else if (arg.equals("--load") ||
     
    262262                    } else {
    263263                        System.err.println("No argument supplied to --load");
    264                         exit(1);
     264                        exit(1); // FIXME
    265265                    }
    266266                } else {
     
    302302                            sb.append(separator);
    303303                            System.err.print(sb.toString());
    304                             exit(2);
     304                            exit(2); // FIXME
    305305                        }
    306306                        ++i;
     
    308308                        // Shouldn't happen.
    309309                        System.err.println("No argument supplied to --eval");
    310                         exit(1);
     310                        exit(1); // FIXME
    311311                    }
    312312                } else if (arg.equals("--load") ||
     
    323323                        // Shouldn't happen.
    324324                        System.err.println("No argument supplied to --load");
    325                         exit(1);
     325                        exit(1);  // FIXME
    326326                    }
    327327                }
     
    329329        }
    330330        if (_BATCH_MODE_.getSymbolValue() == T) {
    331             exit(0);
     331            exit(0); // FIXME
    332332        }
    333333    }
Note: See TracChangeset for help on using the changeset viewer.