# HG changeset patch # User Richard M. Stallman # Date 1020563033 0 # Node ID cb1d1e1eb67866b322bce6479f8bfdf4932075e8 # Parent 7b5b6369f90a2ea82bc5dbc5597e2ed8dfdda141 (filesets-ingroup-collect-files): fix problem with inclusion groups' :scan-depth property diff -r 7b5b6369f90a -r cb1d1e1eb678 lisp/filesets.el --- 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)