aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/Makefile.in4
-rw-r--r--test/ChangeLog4
-rw-r--r--test/automated/Makefile.in5
4 files changed, 13 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 619bca2076b..be01a0cdc29 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12013-11-06 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (setwins_almost, setwins_for_subdirs):
4 Avoid accidental matches.
5
12013-11-06 Stefan Monnier <monnier@iro.umontreal.ca> 62013-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * menu-bar.el (popup-menu): Use key-binding. 8 * menu-bar.el (popup-menu): Use key-binding.
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 9dd5a40de02..d00330c3a9b 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -117,14 +117,14 @@ setwins=for file in `find . -type d -print`; do \
117 117
118# Find all subdirectories except `obsolete' and `term'. 118# Find all subdirectories except `obsolete' and `term'.
119setwins_almost=for file in `find ${srcdir} -type d -print`; do \ 119setwins_almost=for file in `find ${srcdir} -type d -print`; do \
120 case $$file in */obsolete | */term ) ;; \ 120 case $$file in ${srcdir}*/obsolete | ${srcdir}*/term ) ;; \
121 *) wins="$$wins$${wins:+ }$$file" ;; \ 121 *) wins="$$wins$${wins:+ }$$file" ;; \
122 esac; \ 122 esac; \
123 done 123 done
124 124
125# Find all subdirectories in which we might want to create subdirs.el. 125# Find all subdirectories in which we might want to create subdirs.el.
126setwins_for_subdirs=for file in `find ${srcdir} -type d -print`; do \ 126setwins_for_subdirs=for file in `find ${srcdir} -type d -print`; do \
127 case $$file in */cedet* ) ;; \ 127 case $$file in ${srcdir}*/cedet* ) ;; \
128 *) wins="$$wins$${wins:+ }$$file" ;; \ 128 *) wins="$$wins$${wins:+ }$$file" ;; \
129 esac; \ 129 esac; \
130 done 130 done
diff --git a/test/ChangeLog b/test/ChangeLog
index e032af46af0..281ce981b5e 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,7 @@
12013-11-06 Glenn Morris <rgm@gnu.org>
2
3 * automated/Makefile.in (setwins): Avoid accidental matches.
4
12013-11-06 Michael Albinus <michael.albinus@gmx.de> 52013-11-06 Michael Albinus <michael.albinus@gmx.de>
2 6
3 * automated/tramp-tests.el (tramp-test07-file-exists-p): 7 * automated/tramp-tests.el (tramp-test07-file-exists-p):
diff --git a/test/automated/Makefile.in b/test/automated/Makefile.in
index 63cffd9f828..617768995f1 100644
--- a/test/automated/Makefile.in
+++ b/test/automated/Makefile.in
@@ -39,9 +39,8 @@ emacs = unset EMACSLOADPATH; \
39 LC_ALL=C EMACS_TEST_DIRECTORY=$(srcdir) "$(EMACS)" $(EMACSOPT) 39 LC_ALL=C EMACS_TEST_DIRECTORY=$(srcdir) "$(EMACS)" $(EMACSOPT)
40 40
41# Common command to find subdirectories 41# Common command to find subdirectories
42setwins=subdirs=`find $(srcdir) -type d -print`; \ 42setwins=for file in `find $(srcdir) -type d -print`; do \
43 for file in $$subdirs; do \ 43 case $$file in $(srcdir)*/data* | $(srcdir)*/flymake* ) ;; \
44 case $$file in */data* | */flymake* ) ;; \
45 *) wins="$$wins$${wins:+ }$$file" ;; \ 44 *) wins="$$wins$${wins:+ }$$file" ;; \
46 esac; \ 45 esac; \
47 done 46 done