Changeset 4438
- Timestamp:
- 10/17/03 17:34:13 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/Pathname.java
r4047 r4438 3 3 * 4 4 * Copyright (C) 2003 Peter Graves 5 * $Id: Pathname.java,v 1.1 6 2003-09-25 01:21:42piso Exp $5 * $Id: Pathname.java,v 1.17 2003-10-17 17:34:13 piso Exp $ 6 6 * 7 7 * This program is free software; you can redistribute it and/or … … 86 86 } 87 87 88 public static Pathname parseNamestring(String namestring) 89 throws ConditionThrowable 90 { 91 return new Pathname(namestring); 92 } 93 88 94 // ### namestring 89 95 // namestring pathname => namestring 90 96 // FIXME arg can be a stream, too... 91 private static final Primitive1 NAMESTRING = new Primitive1("namestring") { 97 private static final Primitive1 NAMESTRING = new Primitive1("namestring") 98 { 92 99 public LispObject execute(LispObject arg) throws ConditionThrowable 93 100 { … … 129 136 // pathname pathspec => pathname 130 137 // FIXME pathspec can be a stream, too... 131 private static final Primitive1 PATHNAME = new Primitive1("pathname") { 138 private static final Primitive1 PATHNAME = new Primitive1("pathname") 139 { 132 140 public LispObject execute(LispObject arg) throws ConditionThrowable 133 141 { … … 145 153 // FIXME Very incomplete. 146 154 private static final Primitive _MAKE_PATHNAME = 147 new Primitive("%make-pathname", PACKAGE_SYS, false) { 155 new Primitive("%make-pathname", PACKAGE_SYS, false) 156 { 148 157 public LispObject execute(LispObject[] args) throws ConditionThrowable 149 158 { … … 194 203 195 204 // ### pathnamep 196 private static final Primitive1 PATHNAMEP = new Primitive1("pathnamep") { 205 private static final Primitive1 PATHNAMEP = new Primitive1("pathnamep") 206 { 197 207 public LispObject execute(LispObject arg) throws ConditionThrowable 198 208 {
Note: See TracChangeset
for help on using the changeset viewer.