Changeset 186
- Timestamp:
- 10/30/02 19:15:25 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/j/CommandInterpreter.java
r167 r186 3 3 * 4 4 * Copyright (C) 1998-2002 Peter Graves 5 * $Id: CommandInterpreter.java,v 1. 4 2002-10-19 14:52:09piso Exp $5 * $Id: CommandInterpreter.java,v 1.5 2002-10-30 19:15:25 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 215 215 return; 216 216 String prompt = match.toString(); 217 if (text.equals(prompt) && editor.getDotOffset() == prompt.length()) 217 if (text.equals(prompt) && editor.getDotOffset() == prompt.length()) { 218 if (isTransient()) 219 editor.escape(); 218 220 return; // Nothing to do. 221 } 219 222 CompoundEdit compoundEdit = beginCompoundEdit(); 220 223 if (!text.equals(prompt)) {
Note: See TracChangeset
for help on using the changeset viewer.