diff options
| author | Gerd Moellmann | 2001-11-10 13:55:22 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-11-10 13:55:22 +0000 |
| commit | 5c8295d89658f13702b17f8fc3a3875ea8b5c153 (patch) | |
| tree | 9b7a311b5f4b6aae17e7aa6e90505b78badb6f1c | |
| parent | 66895301efde9fd7a6e29cdabaa6b8e53bd705dc (diff) | |
| download | emacs-5c8295d89658f13702b17f8fc3a3875ea8b5c153.tar.gz emacs-5c8295d89658f13702b17f8fc3a3875ea8b5c153.zip | |
(finder_setwins, setwins): Exclude Calc.
| -rw-r--r-- | lisp/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
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) | |||
| 114 | 114 | ||
| 115 | setwins=subdirs=`find $$wd -type d -print`; \ | 115 | setwins=subdirs=`find $$wd -type d -print`; \ |
| 116 | for file in $$subdirs; do \ | 116 | for file in $$subdirs; do \ |
| 117 | case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \ | 117 | case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */calc ) ;; \ |
| 118 | *) wins="$$wins $$file" ;; \ | 118 | *) wins="$$wins $$file" ;; \ |
| 119 | esac; \ | 119 | esac; \ |
| 120 | done | 120 | done |
| 121 | 121 | ||
| 122 | finder_setwins=subdirs=`find $$wd -type d -print`; \ | 122 | finder_setwins=subdirs=`find $$wd -type d -print`; \ |
| 123 | for file in $$subdirs; do \ | 123 | for file in $$subdirs; do \ |
| 124 | case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term) ;; \ | 124 | case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term | */calc ) ;; \ |
| 125 | *) wins="$$wins $$file" ;; \ | 125 | *) wins="$$wins $$file" ;; \ |
| 126 | esac; \ | 126 | esac; \ |
| 127 | done | 127 | done |