aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Rost <[email protected]>2002-11-20 07:16:19 +0000
committerMarkus Rost <[email protected]>2002-11-20 07:16:19 +0000
commit30089f1de09ea38e9cc0e333fbe23fe3ebe973b1 (patch)
tree59a6806a086fd03618e4737527c11b6575f2b3fd
parenta2dff4d3d37616aacf39c1ab5508316c4bc95ff4 (diff)
(setwins_almost): Renamed from finder_setwins.
(custom-deps): Use it. (finder-data): Adjust to that name change.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/Makefile.in6
2 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 48aa66b4d4..e3bf6c1138 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2002-11-20 Markus Rost <[email protected]>
+
+ * Makefile.in (setwins_almost): Renamed from finder_setwins.
+ (custom-deps): Use it.
+ (finder-data): Adjust to that name change.
+
2002-11-19 Dave Love <[email protected]>
* emacs-lisp/bytecomp.el (maphash, map-char-table): Use
@@ -119,7 +125,7 @@
* emacs-lisp/autoload.el (update-autoloads-from-directories):
Sort the list of files with no autoloads.
-2002-08-23 Alan Shutko <[email protected]>
+2002-11-16 Alan Shutko <[email protected]>
* calendar/diary-lib.el (list-diary-entries): Pass a marker
indicating source of entry to add-to-diary-list.
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index a566696a87..0183b4ed58 100644
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -132,7 +132,7 @@ setwins=subdirs=`find $$wd -type d -print`; \
esac; \
done
-finder_setwins=subdirs=`find $$wd -type d -print`; \
+setwins_almost=subdirs=`find $$wd -type d -print`; \
for file in $$subdirs; do \
case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term ) ;; \
*) wins="$$wins $$file" ;; \
@@ -144,12 +144,12 @@ doit:
cus-load.el:
touch $@
custom-deps: cus-load.el doit
- wd=$(lisp); $(setwins); \
+ wd=$(lisp); $(setwins_almost); \
echo Directories: $$wins; \
$(EMACS) $(EMACSOPT) -l cus-dep -f custom-make-dependencies $$wins
finder-data: doit
- wd=$(lisp); $(finder_setwins); \
+ wd=$(lisp); $(setwins_almost); \
echo Directories: $$wins; \
$(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins