Changeset 4051
- Timestamp:
- 09/25/03 15:37:08 (20 years ago)
- Location:
- trunk/j/src/org/armedbear/lisp
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Autoload.java
r4048 r4051 3 3 * 4 4 * Copyright (C) 2003 Peter Graves 5 * $Id: Autoload.java,v 1.7 5 2003-09-25 13:18:18 piso Exp $5 * $Id: Autoload.java,v 1.76 2003-09-25 15:37:08 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 70 70 out.writeString(className); 71 71 out.writeLine(" ..."); 72 out.f inishOutput();72 out.flushOutput(); 73 73 long start = System.currentTimeMillis(); 74 74 Class.forName(className); … … 79 79 out.writeString(String.valueOf(((float)elapsed)/1000)); 80 80 out.writeLine(" seconds)"); 81 out.f inishOutput();81 out.flushOutput(); 82 82 } 83 83 catch (ClassNotFoundException e) { -
trunk/j/src/org/armedbear/lisp/BinaryOutputStream.java
r3887 r4051 3 3 * 4 4 * Copyright (C) 2003 Peter Graves 5 * $Id: BinaryOutputStream.java,v 1. 3 2003-09-19 12:32:13piso Exp $5 * $Id: BinaryOutputStream.java,v 1.4 2003-09-25 15:37:08 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 45 45 } 46 46 47 public void f inishOutput() throws ConditionThrowable47 public void flushOutput() throws ConditionThrowable 48 48 { 49 49 try { -
trunk/j/src/org/armedbear/lisp/CharacterOutputStream.java
r3887 r4051 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: CharacterOutputStream.java,v 1. 5 2003-09-19 12:32:13piso Exp $5 * $Id: CharacterOutputStream.java,v 1.6 2003-09-25 15:37:08 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 223 223 } 224 224 225 public void f inishOutput() throws ConditionThrowable225 public void flushOutput() throws ConditionThrowable 226 226 { 227 227 try { -
trunk/j/src/org/armedbear/lisp/Interpreter.java
r4049 r4051 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: Interpreter.java,v 1.3 7 2003-09-25 14:33:57piso Exp $5 * $Id: Interpreter.java,v 1.38 2003-09-25 15:37:08 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 122 122 ++commandNumber; 123 123 out.writeString(prompt()); 124 out.f inishOutput();124 out.flushOutput(); 125 125 char c = peekCharNonWhitespace(getStandardInput()); 126 126 if (c == '\n') { … … 190 190 out.writeLine(String.valueOf(result)); 191 191 } 192 out.f inishOutput();192 out.flushOutput(); 193 193 } 194 194 catch (StackOverflowError e) { -
trunk/j/src/org/armedbear/lisp/Lisp.java
r4049 r4051 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: Lisp.java,v 1.1 49 2003-09-25 14:33:32piso Exp $5 * $Id: Lisp.java,v 1.150 2003-09-25 15:37:08 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 1084 1084 } 1085 1085 out.writeLine("; Profiling started."); 1086 out.f inishOutput();1086 out.flushOutput(); 1087 1087 profiling = true; 1088 1088 } else { 1089 1089 out.writeLine("; Profiling already enabled."); 1090 out.f inishOutput();1090 out.flushOutput(); 1091 1091 } 1092 1092 return LispThread.currentThread().nothing(); … … 1106 1106 } else 1107 1107 out.writeLine("; Profiling not enabled."); 1108 out.f inishOutput();1108 out.flushOutput(); 1109 1109 return LispThread.currentThread().nothing(); 1110 1110 } -
trunk/j/src/org/armedbear/lisp/LispThread.java
r3887 r4051 3 3 * 4 4 * Copyright (C) 2003 Peter Graves 5 * $Id: LispThread.java,v 1.1 3 2003-09-19 12:32:13piso Exp $5 * $Id: LispThread.java,v 1.14 2003-09-25 15:37:08 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 230 230 try { 231 231 out.writeLine("Evaluation stack:"); 232 out.f inishOutput();232 out.flushOutput(); 233 233 for (int i = stack.size(); i-- > 0;) { 234 234 out.writeString(" "); … … 247 247 pprint(obj, out.getCharPos(), out); 248 248 out.terpri(); 249 out.f inishOutput();249 out.flushOutput(); 250 250 } 251 251 } -
trunk/j/src/org/armedbear/lisp/Load.java
r4039 r4051 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: Load.java,v 1.2 0 2003-09-24 14:16:46piso Exp $5 * $Id: Load.java,v 1.21 2003-09-25 15:37:08 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 185 185 out.writeString(semicolons); 186 186 out.writeLine(" Loading " + truename + " ..."); 187 out.f inishOutput();187 out.flushOutput(); 188 188 } 189 189 LispObject result = loadStream(in, print); … … 198 198 out.writeString(String.valueOf(((float)elapsed)/1000)); 199 199 out.writeLine(" seconds)"); 200 out.f inishOutput();200 out.flushOutput(); 201 201 } 202 202 return result; … … 223 223 CharacterOutputStream out = getStandardOutput(); 224 224 out.writeLine(String.valueOf(result)); 225 out.f inishOutput();225 out.flushOutput(); 226 226 } 227 227 } -
trunk/j/src/org/armedbear/lisp/Time.java
r3884 r4051 3 3 * 4 4 * Copyright (C) 2003 Peter Graves 5 * $Id: Time.java,v 1. 6 2003-09-19 11:50:19piso Exp $5 * $Id: Time.java,v 1.7 2003-09-25 15:37:08 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 49 49 } 50 50 out.writeString(sb.toString()); 51 out.f inishOutput();51 out.flushOutput(); 52 52 return result; 53 53 } -
trunk/j/src/org/armedbear/lisp/room.java
r3871 r4051 3 3 * 4 4 * Copyright (C) 2003 Peter Graves 5 * $Id: room.java,v 1. 2 2003-09-19 00:05:11piso Exp $5 * $Id: room.java,v 1.3 2003-09-25 15:37:08 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 61 61 sb.append(System.getProperty("line.separator")); 62 62 out.writeString(sb.toString()); 63 out.f inishOutput();63 out.flushOutput(); 64 64 return number(used); 65 65 }
Note: See TracChangeset
for help on using the changeset viewer.