diff options
| author | Richard M. Stallman | 2002-05-05 01:44:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-05-05 01:44:04 +0000 |
| commit | dbfd87a1ebee15fdb73042f54c377cd05bd4d2fd (patch) | |
| tree | 112f58dad7c35b693a05a92c39ddca7559d2dd27 /lisp/filesets.el | |
| parent | b5e80d1acd5da65a49bad78cd9e7302ebfc8e51a (diff) | |
| download | emacs-dbfd87a1ebee15fdb73042f54c377cd05bd4d2fd.tar.gz emacs-dbfd87a1ebee15fdb73042f54c377cd05bd4d2fd.zip | |
(filesets-ingroup-collect-files):
fix problem with inclusion groups' :scan-depth property
Diffstat (limited to 'lisp/filesets.el')
| -rw-r--r-- | lisp/filesets.el | 4 |
1 files changed, 2 insertions, 2 deletions
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) |