[Javanetsim-cvs] javaNetSim/guiUI Terminal.java,1.19,1.20
Status: Beta
Brought to you by:
darkkey
From: QweR <qw...@us...> - 2008-10-22 16:16:07
|
Update of /cvsroot/javanetsim/javaNetSim/guiUI In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21408/guiUI Modified Files: Terminal.java Log Message: some little bugs was trapped Index: Terminal.java =================================================================== RCS file: /cvsroot/javanetsim/javaNetSim/guiUI/Terminal.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Terminal.java 19 Oct 2008 21:40:19 -0000 1.19 --- Terminal.java 22 Oct 2008 16:15:30 -0000 1.20 *************** *** 239,242 **** --- 239,248 ---- break; } + case 0x11: { + interface__exit_Command.call(new Vector<String>(0)); + addText(""); + cmdline.setText(""); + break; + } case 0x1B: { cmdline.setText(""); *************** *** 271,274 **** --- 277,281 ---- default: { pos_history = history.size(); + //terminal.setText(text+"\n"+Integer.toHexString(symbol.charAt(0))); } } *************** *** 301,305 **** default: { pos_history = history.size(); ! //terminal.setText(text+"\n"+Integer.toHexString(i)); } } --- 308,312 ---- default: { pos_history = history.size(); ! //terminal.setText(text+"\n"+Integer.toHexString(symbol.charAt(2))); } } |