Exclude "test.el" from :files by default

This commit is contained in:
Steve Purcell 2015-01-01 12:24:26 +00:00
parent bd632f747b
commit 3b3018b087
2 changed files with 2 additions and 2 deletions

View file

@ -239,7 +239,7 @@ ending in `test.el` or `tests.el`. See the default value below,
("*.el" "*.el.in" "dir"
"*.info" "*.texi" "*.texinfo"
"doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo"
(:exclude ".dir-locals.el" "tests.el" "*-test.el" "*-tests.el"))
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el"))
This option is necessary when there are multiple packages in the
repository and thus the package should only be built from a subset of

View file

@ -124,7 +124,7 @@ function for access to this function")
'("*.el" "*.el.in" "dir"
"*.info" "*.texi" "*.texinfo"
"doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo"
(:exclude ".dir-locals.el" "tests.el" "*-test.el" "*-tests.el"))
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el"))
"Default value for :files attribute in recipes.")
(defun pb/message (format-string &rest args)