aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2004-03-29 02:25:50 +0000
committerKenichi Handa2004-03-29 02:25:50 +0000
commit39cc05f572cec0dc17c994120aabf55e2cbbcfd3 (patch)
tree704b2492e87a59c26479638f18472093bec73cc2
parentadb3b3532f2e75632af79c86343cac745567ea72 (diff)
downloademacs-39cc05f572cec0dc17c994120aabf55e2cbbcfd3.tar.gz
emacs-39cc05f572cec0dc17c994120aabf55e2cbbcfd3.zip
(setwins, setwins_almost): Change directory to $wd
before finding directories by `find'.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/Makefile.in8
2 files changed, 10 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2857c041aba..b4f846d5ee1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12004-03-29 Kenichi Handa <handa@m17n.org>
2
3 * Makefile.in (setwins, setwins_almost): Change directory to $wd
4 before finding directories by `find'.
5
12004-03-28 Stefan Monnier <monnier@iro.umontreal.ca> 62004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * subr.el (interactive-form): Delete. Now implemented in C. 8 * subr.el (interactive-form): Delete. Now implemented in C.
@@ -320,7 +325,7 @@
320 Eliminate revert messages. 325 Eliminate revert messages.
321 (dired-mode): Set buffer-stale-function to dired-buffer-stale-p. 326 (dired-mode): Set buffer-stale-function to dired-buffer-stale-p.
322 327
3232004-03-23 Kenichi Handa <handa@etlken2> 3282004-03-23 Kenichi Handa <handa@m17n.org>
324 329
325 * international/characters.el: Setup syntaxes for more parentheses 330 * international/characters.el: Setup syntaxes for more parentheses
326 Unicode characters. 331 Unicode characters.
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index e1c6b779db2..9efd587a199 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -136,17 +136,17 @@ emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT)
136 136
137# Common command to find subdirectories 137# Common command to find subdirectories
138 138
139setwins=subdirs=`find $$wd -type d -print`; \ 139setwins=subdirs=`(cd $$wd; find . -type d -print)`; \
140 for file in $$subdirs; do \ 140 for file in $$subdirs; do \
141 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \ 141 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \
142 *) wins="$$wins $$file" ;; \ 142 *) wins="$$wins $$wd/$$file" ;; \
143 esac; \ 143 esac; \
144 done 144 done
145 145
146setwins_almost=subdirs=`find $$wd -type d -print`; \ 146setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \
147 for file in $$subdirs; do \ 147 for file in $$subdirs; do \
148 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \ 148 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \
149 *) wins="$$wins $$file" ;; \ 149 *) wins="$$wins $$wd/$$file" ;; \
150 esac; \ 150 esac; \
151 done 151 done
152 152