From f8c59ba149d4ba253d8327b0b6f0dd0a1607bece Mon Sep 17 00:00:00 2001 From: pw <pw> Date: Fri, 23 Mar 2001 14:57:48 +0000 Subject: [PATCH] Emit a warning if the :name or :type argument to MAKE-PATHNAME for a unix host contains a directory separator character. --- code/pathname.lisp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/code/pathname.lisp b/code/pathname.lisp index a2efc69df..346fd56e5 100644 --- a/code/pathname.lisp +++ b/code/pathname.lisp @@ -4,7 +4,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.46 2001/03/14 13:44:18 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.47 2001/03/23 14:57:48 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -673,6 +673,16 @@ a host-structure or string." (merge-directories dir (%pathname-directory defaults) diddle-defaults))) + + ;; A bit of sanity checking on user arguments. + (flet ((check-component-validity (name name-or-type) + (let ((unix-directory-separator #\/)) + (when (eq host (pathname-host *default-pathname-defaults*)) + (when (find unix-directory-separator name) + (warn "Silly argument for a unix ~A: ~S" + name-or-type name)))))) + (check-component-validity name :pathname-name) + (check-component-validity type :pathname-type)) (macrolet ((pick (var varp field) `(cond ((or (simple-string-p ,var) -- GitLab