diff options
| author | Gerd Moellmann | 2001-08-02 09:00:17 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-08-02 09:00:17 +0000 |
| commit | 773899307274982f5a3ecbb636468376e1645059 (patch) | |
| tree | 907c27e40c5d8d171277c00efdd9f43ab9663a49 | |
| parent | 5ae296846a5df9f0d9eb301368b3bdca6c9d89f4 (diff) | |
| download | emacs-773899307274982f5a3ecbb636468376e1645059.tar.gz emacs-773899307274982f5a3ecbb636468376e1645059.zip | |
(TAGS, TAGS-LISP): Exclude loaddefs.el.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/Makefile.in | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cb45f4a3bae..b3b1d0e20b0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-08-02 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (TAGS, TAGS-LISP): Exclude loaddefs.el. | ||
| 4 | |||
| 1 | 2001-08-01 Eli Zaretskii <eliz@is.elta.co.il> | 5 | 2001-08-01 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 6 | ||
| 3 | * man.el (man): Mention Man-switches in the doc string. | 7 | * man.el (man): Mention Man-switches in the doc string. |
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 703d5c7a28b..d73c800c845 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -173,10 +173,12 @@ update-authors: | |||
| 173 | $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir) | 173 | $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir) |
| 174 | 174 | ||
| 175 | TAGS: $(lisptagsfiles1) $(lisptagsfiles2) | 175 | TAGS: $(lisptagsfiles1) $(lisptagsfiles2) |
| 176 | ${ETAGS} $(lisptagsfiles1) $(lisptagsfiles2) | 176 | els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s/loaddefs.el//"`; \ |
| 177 | ${ETAGS} $$els | ||
| 177 | 178 | ||
| 178 | TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2) | 179 | TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2) |
| 179 | ${ETAGS} -o TAGS-LISP $(lisptagsfiles1) $(lisptagsfiles2) | 180 | els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s/loaddefs.el//"`; \ |
| 181 | ${ETAGS} -o TAGS-LISP $$els | ||
| 180 | 182 | ||
| 181 | .SUFFIXES: .elc .el | 183 | .SUFFIXES: .elc .el |
| 182 | 184 | ||