diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/filesets.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index de7d9f7b0f2..2d31fdfae83 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-05-04 Thomas Link <t.link@gmx.at> | ||
| 2 | |||
| 3 | * filesets.el (filesets-ingroup-collect-files): | ||
| 4 | Fix problem with inclusion groups' :scan-depth property. | ||
| 5 | |||
| 1 | 2002-05-04 Colin Walters <walters@verbum.org> | 6 | 2002-05-04 Colin Walters <walters@verbum.org> |
| 2 | 7 | ||
| 3 | * ibuf-ext.el (ibuffer-kill-filter-group): Test for killing | 8 | * ibuf-ext.el (ibuffer-kill-filter-group): Test for killing |
diff --git a/lisp/filesets.el b/lisp/filesets.el index 00d9e0b6272..0195d70d64c 100644 --- a/lisp/filesets.el +++ b/lisp/filesets.el | |||
| @@ -2006,8 +2006,8 @@ LOOKUP-NAME is used as lookup name for retrieving fileset specific settings." | |||
| 2006 | ((not this-patt) | 2006 | ((not this-patt) |
| 2007 | (filesets-error 'error "Filesets: malformed :ingroup definition " | 2007 | (filesets-error 'error "Filesets: malformed :ingroup definition " |
| 2008 | this-def)) | 2008 | this-def)) |
| 2009 | ((<= this-sd 0) | 2009 | ((< this-sd 0) |
| 2010 | (setq rv (nconc rv `(((,master ,this-name)))))) | 2010 | nil) |
| 2011 | (t | 2011 | (t |
| 2012 | (with-temp-buffer | 2012 | (with-temp-buffer |
| 2013 | (insert-file-contents master) | 2013 | (insert-file-contents master) |