Changeset 3849
- Timestamp:
- 09/17/03 18:07:34 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/LispCharacter.java
r3847 r3849 3 3 * 4 4 * Copyright (C) 2002-2003 Peter Graves 5 * $Id: LispCharacter.java,v 1.2 3 2003-09-17 15:18:53piso Exp $5 * $Id: LispCharacter.java,v 1.24 2003-09-17 18:07:34 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 58 58 } 59 59 60 public LispObject typep(LispObject type Specifier) throws LispError60 public LispObject typep(LispObject type) throws LispError 61 61 { 62 if (type Specifier== Symbol.CHARACTER)62 if (type == Symbol.CHARACTER) 63 63 return T; 64 if (type Specifier== LispClass.CHARACTER)64 if (type == LispClass.CHARACTER) 65 65 return T; 66 if (type Specifier== Symbol.BASE_CHAR)66 if (type == Symbol.BASE_CHAR) 67 67 return T; 68 if (type Specifier== Symbol.STANDARD_CHAR)68 if (type == Symbol.STANDARD_CHAR) 69 69 return isStandardChar(); 70 if (typeSpecifier == Type.CHARACTER) 71 return T; 72 if (typeSpecifier == Type.BASE_CHAR) 73 return T; 74 if (typeSpecifier == Type.STANDARD_CHAR) 75 return isStandardChar(); 76 return super.typep(typeSpecifier); 70 return super.typep(type); 77 71 } 78 72
Note: See TracChangeset
for help on using the changeset viewer.