Mercurial > emacs
changeset 40874:b5a76830e73e
(finder_setwins, setwins): Exclude Calc.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Sat, 10 Nov 2001 13:55:22 +0000 |
parents | f288d1d604a7 |
children | 4a9b5981d24b |
files | lisp/Makefile.in |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/Makefile.in Sat Nov 10 13:51:02 2001 +0000 +++ b/lisp/Makefile.in Sat Nov 10 13:55:22 2001 +0000 @@ -114,14 +114,14 @@ 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