Changeset 407
- Timestamp:
- 09/27/08 20:26:18 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
jasko.tim.lisp/src/jasko/tim/lisp/swank/AllegroImplementation.java
r194 r407 127 127 } 128 128 } 129 public String getQuitForm() { return "(exit)"; }130 129 131 130 public String getLoadSwankCommand() { jasko.tim.lisp/src/jasko/tim/lisp/swank/LispImplementation.java
r293 r407 53 53 } 54 54 55 public String getQuitForm() { return "(quit)"; }56 57 55 /** 58 56 * This exists to help work around SBCL's windows problem. jasko.tim.lisp/src/jasko/tim/lisp/swank/SwankInterface.java
r394 r407 590 590 591 591 try { 592 commandInterface.writeBytes( implementation.getQuitForm() + "\n");592 commandInterface.writeBytes("(swank:quit-lisp)\n"); 593 593 commandInterface.flush(); 594 594 } catch (IOException e) {
