changeset 45130:cb1d1e1eb678

(filesets-ingroup-collect-files): fix problem with inclusion groups' :scan-depth property
author Richard M. Stallman <rms@gnu.org>
date Sun, 05 May 2002 01:43:53 +0000
parents 7b5b6369f90a
children 92db9a8c97d7
files lisp/filesets.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/filesets.el	Sun May 05 00:12:54 2002 +0000
+++ b/lisp/filesets.el	Sun May 05 01:43:53 2002 +0000
@@ -2006,8 +2006,8 @@
 	       ((not this-patt)
 		(filesets-error 'error "Filesets: malformed :ingroup definition "
 				this-def))
-	       ((<= this-sd 0)
-		(setq rv (nconc rv `(((,master ,this-name))))))
+	       ((< this-sd 0)
+		nil)
 	       (t
 		(with-temp-buffer
 		  (insert-file-contents master)