Skip to content
Snippets Groups Projects
Commit 17d9d187 authored by pw's avatar pw
Browse files

Fix defknown for parse-namestring to allow STRING as a type for optional

:HOST argument.
parent 4ddffccf
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.93 2001/04/12 19:45:57 pw Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.94 2001/05/27 15:15:48 pw Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -944,7 +944,7 @@
(defknown truename (pathnamelike) pathname ())
(defknown parse-namestring
(pathnamelike &optional pathname-host pathnamelike
(pathnamelike &optional (or string pathname-host) pathnamelike
&key (:start index) (:end sequence-end) (:junk-allowed t))
(values (or pathname null) sequence-end)
())
......
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