Changeset 217
- Timestamp:
- 11/09/02 19:19:56 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/j/LispMode.java
r195 r217 3 3 * 4 4 * Copyright (C) 1998-2002 Peter Graves 5 * $Id: LispMode.java,v 1.1 3 2002-11-03 20:30:36 piso Exp $5 * $Id: LispMode.java,v 1.14 2002-11-09 19:19:56 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 123 123 "let", "let*", "loop", "progn", "typecase", "unless", "when" 124 124 }; 125 125 126 private final String[] elispSpecials = new String[] { 127 "while" 128 }; 129 126 130 private final String[] hemlockSpecials = new String[] { 127 131 "frob", "with-mark" 128 132 }; 129 133 130 134 public int getCorrectIndentation(Line line, Buffer buffer) 131 135 { … … 164 168 if (Utilities.isOneOf(token, specials)) 165 169 return buffer.getCol(pos) + indentSize; 170 if (Utilities.isOneOf(token, elispSpecials)) 171 return buffer.getCol(pos) + indentSize; 166 172 if (Utilities.isOneOf(token, hemlockSpecials)) 167 173 return buffer.getCol(pos) + indentSize;
Note: See TracChangeset
for help on using the changeset viewer.