aboutsummaryrefslogtreecommitdiff
path: root/src/interp/pathname.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-02-06 17:47:36 +0000
committerdos-reis <gdr@axiomatics.org>2009-02-06 17:47:36 +0000
commit1fe2ae3281b2fe98141aa6eab6111f98a8a2f95d (patch)
treecc3cdd01a5b3357a9c7ecb1c7dedd6f9693286ee /src/interp/pathname.boot
parentbdf97312aa979fa8e5cef024834cbda19d3c7c67 (diff)
downloadopen-axiom-1fe2ae3281b2fe98141aa6eab6111f98a8a2f95d.tar.gz
2009-02-06 Gabriel Dos Reis <gdr@cs.tamu.edu>
Alfredo Portes <doyenatccny@gmail.com> Fix AW/236, AW/282 * interp/sys-utility.boot (probeReadableFile): New. * interp/nlib.lisp (probe-name): Remove. (make-input-filename): Tidy. * interp/lisplib.boot (readLib1): Return nil if path inexistent. (getFileProperty): Likewise.
Diffstat (limited to 'src/interp/pathname.boot')
-rw-r--r--src/interp/pathname.boot3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interp/pathname.boot b/src/interp/pathname.boot
index 9c466a07..5df49e60 100644
--- a/src/interp/pathname.boot
+++ b/src/interp/pathname.boot
@@ -48,8 +48,7 @@ pathname? p ==
null p or PATHNAMEP p
pathname p ==
- null p => p
- PATHNAMEP p => p
+ pathname? p => p
not PAIRP p => PATHNAME p
if #p>2 then p:=[p.0,p.1]
PATHNAME APPLY(FUNCTION MAKE_-FILENAME, p)