Changeset 4610
- Timestamp:
- 11/02/03 17:20:42 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/j/LispMode.java
r4476 r4610 3 3 * 4 4 * Copyright (C) 1998-2003 Peter Graves 5 * $Id: LispMode.java,v 1.6 2 2003-10-21 01:01:34piso Exp $5 * $Id: LispMode.java,v 1.63 2003-11-02 17:20:42 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 835 835 if (editor.getDot() == null) 836 836 return; 837 if (Character.isWhitespace(editor.getDotChar())) { 837 char c = editor.getDotChar(); 838 if (c == ')' || Character.isWhitespace(c)) { 838 839 final Line dotLine = editor.getDotLine(); 839 840 final String text = dotLine.getText(); 840 841 for (int offset = editor.getDotOffset(); offset-- > 0;) { 841 c har c= text.charAt(offset);842 c = text.charAt(offset); 842 843 if (mode.isIdentifierPart(c)) { 843 844 s = mode.getIdentifier(dotLine, offset);
Note: See TracChangeset
for help on using the changeset viewer.