# # patch "ChangeLog" # from [ed186b8d1f6dffcc2522a106349621e7c935dad2] # to [2a0bece7ffcaac6675538ce6d9d479267ef59a42] # # patch "std_hooks.lua" # from [654ddd47221d379c6548ed9b3a41a8441cb31fd5] # to [072c95bc58425ade43dc08e8361c7aca49275dd4] # --- ChangeLog +++ ChangeLog @@ -1,3 +1,8 @@ +2005-06-28 Nathaniel Smith + + * std_hooks.lua (ignore_file): Ignore vim swap files and emacs + temp files. + 2005-06-27 Nathaniel Smith * INSTALL: Bump required version of Boost to 1.32. --- std_hooks.lua +++ std_hooks.lua @@ -81,6 +81,11 @@ if (string.find(name, "%.orig$")) then return true end if (string.find(name, "%.rej$")) then return true end if (string.find(name, "%~$")) then return true end + -- editor temp files + -- vim creates .foo.swp files + if (string.find(name, "%.[^/]*%.swp$")) then return true end + -- emacs creates #foo# files + if (string.find(name, "%#[^/]*%#$")) then return true end -- autotools detritus: if (string.find(name, "^autom4te.cache/")) then return true end if (string.find(name, "/autom4te.cache/")) then return true end