diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-08-05 18:16:10 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-08-05 18:16:10 -0400 |
commit | 49c0dec2e0731e3b05594093fc5ef2d5d1b7a014 (patch) | |
tree | 0dfc91da6859a6f417d47c1acde4033729c27532 | |
parent | 5ed2006c7b1d7a6b51e0a287cd5493e5128f0bf6 (diff) |
site: Update default file filter.
* haunt/site.scm (default-file-filter): Ignore files that begin with "."
or "#".
-rw-r--r-- | haunt/site.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haunt/site.scm b/haunt/site.scm index 44fd6b3..05d3f56 100644 --- a/haunt/site.scm +++ b/haunt/site.scm @@ -126,4 +126,4 @@ BUILDERS: A list of procedures for building pages from posts" ;; Filter out Emacs temporary files by default. (define default-file-name-filter - (make-file-name-filter '("^\\.#"))) + (make-file-name-filter '("^\\." "^#"))) |