summaryrefslogtreecommitdiff
path: root/leim
diff options
context:
space:
mode:
Diffstat (limited to 'leim')
-rw-r--r--leim/ChangeLog4
-rw-r--r--leim/makefile.w32-in4
2 files changed, 7 insertions, 1 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index f4bfce06bb3..330321725f2 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,7 @@
+2007-07-16 Eli Zaretskii <eliz@gnu.org>
+
+ * makefile.w32-in (extraclean): Don't delete *~.
+
2007-06-02 Chong Yidong <cyd@stupidchicken.com>
* Version 22.1 released.
diff --git a/leim/makefile.w32-in b/leim/makefile.w32-in
index 08022d38cf2..6f6508feceb 100644
--- a/leim/makefile.w32-in
+++ b/leim/makefile.w32-in
@@ -215,5 +215,7 @@ distclean: clean
maintainer-clean: distclean
- $(FOREACH) $(WORLD) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)
+# We used to delete *~ here, but that might inadvertently remove
+# precious files if it happens to match their short 8+3 aliases.
extraclean: maintainer-clean
- - $(FOREACH) *~ "#*" $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)
+ - $(FOREACH) *.el~ "#*" $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)