Changeset 147
- Timestamp:
- 10/15/02 01:32:11 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/j/LispMode.java
r133 r147 3 3 * 4 4 * Copyright (C) 1998-2002 Peter Graves 5 * $Id: LispMode.java,v 1. 6 2002-10-14 03:42:38piso Exp $5 * $Id: LispMode.java,v 1.7 2002-10-15 01:32:11 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 24 24 import java.awt.event.KeyEvent; 25 25 26 public finalclass LispMode extends AbstractMode implements Constants, Mode26 public class LispMode extends AbstractMode implements Constants, Mode 27 27 { 28 28 private static final LispMode mode = new LispMode(); … … 35 35 } 36 36 37 public static final LispMode getMode() 37 protected LispMode(int id, String displayName) 38 { 39 super(id, displayName); 40 } 41 42 public static Mode getMode() 38 43 { 39 44 return mode; … … 138 143 } 139 144 } 140 145 141 146 int depth = depth(new Position(line, 0), buffer); 142 147 if (depth > 0) … … 178 183 } 179 184 } 180 185 181 186 protected Position findContainingSexp(Position start) 182 187 { … … 202 207 } 203 208 } 204 209 205 210 protected Position forwardSexp(Position start) 206 211 {
Note: See TracChangeset
for help on using the changeset viewer.