Skip to content
Snippets Groups Projects
Commit 29211df9 authored by chiles's avatar chiles
Browse files

Added a doc string to HI:DIRECTORYP.
parent 64e7125b
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/rompsite.lisp,v 1.1.1.10 1991/02/08 16:37:08 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/rompsite.lisp,v 1.1.1.11 1991/06/22 00:08:05 chiles Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -167,6 +167,8 @@
(return-with-slash (merge-pathnames pathname default-directory))))))
(defun directoryp (pathname)
"Returns whether pathname names a directory, that is whether it has no
name and no type components."
(not (or (pathname-name pathname) (pathname-type pathname))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment