From: Gerd Moellmann Date: Sat, 10 Nov 2001 13:55:22 +0000 (+0000) Subject: (finder_setwins, setwins): Exclude Calc. X-Git-Tag: ttn-vms-21-2-B4~18706 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5c8295d89658f13702b17f8fc3a3875ea8b5c153;p=emacs.git (finder_setwins, setwins): Exclude Calc. --- diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 5fd528b1d00..19124c057ff 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -114,14 +114,14 @@ emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT) setwins=subdirs=`find $$wd -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \ + case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */calc ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done finder_setwins=subdirs=`find $$wd -type d -print`; \ for file in $$subdirs; do \ - case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term) ;; \ + case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term | */calc ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done