From 691d46830e187b478520a90bdcb4d5dad363088d Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 18 Dec 1991 22:35:03 +0000 Subject: [PATCH] Allow NIL components to be matched by :multi-char-wild. --- code/pathname.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/pathname.lisp b/code/pathname.lisp index c0b39a819..e185147f6 100644 --- a/code/pathname.lisp +++ b/code/pathname.lisp @@ -6,7 +6,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.2 1991/12/18 11:40:52 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.3 1991/12/18 22:35:03 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -667,7 +667,7 @@ (and (consp that) (components-match (car this) (car that)) (components-match (cdr this) (cdr that)))) - ((member :back :up :unspecific) + ((member :back :up :unspecific nil) (and (pattern-p that) (equal (pattern-pieces that) '(:multi-char-wild))))))) -- GitLab