diff options
author | Eli Zaretskii <eliz@gnu.org> | 2007-07-16 22:37:26 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2007-07-16 22:37:26 +0000 |
commit | a055c272823cace6a672484bff5d719ddce71022 (patch) | |
tree | 2f031c773ddb85b353da6cab6974df9d881cb108 /lisp | |
parent | 1eceac24429163be77738f7eaf19734124e6f8f2 (diff) | |
download | emacs-a055c272823cace6a672484bff5d719ddce71022.tar.gz |
(clean): Don't delete *~.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/makefile.w32-in | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6e1ff0cf5a0..6d1b192ce8e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-07-16 Eli Zaretskii <eliz@gnu.org> + + * makefile.w32-in (clean): Don't delete *~. + 2007-07-16 Stefan Monnier <monnier@iro.umontreal.ca> * textmodes/tex-mode.el (tex-verbatim-environments): diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index 6e8a3f5d39a..0b666d941e5 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -441,5 +441,7 @@ install-lisp-CMD: # # Maintenance # +# We used to delete *~ here, but that might inadvertently remove +# precious files if it happens to match their short 8+3 aliases. clean: - - $(DEL) *~ + - $(DEL) *.el~ |