1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-04 22:50:59 -08:00

(TAGS, TAGS-LISP): Filter out of `els' only loaddefs* and ldefs-boot*.

This commit is contained in:
Eli Zaretskii 2004-02-16 12:07:09 +00:00
parent 159c348e36
commit f800daf646
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2004-02-16 Richard Stallman <rms@gnu.org>
* Makefile.in (TAGS, TAGS-LISP): Filter out of `els' only
loaddefs* and ldefs-boot*.
2004-02-16 Eli Zaretskii <eliz@elta.co.il>
* mail/mail-utils.el (rmail-dont-reply-to): Anchor user login name

View file

@ -188,11 +188,11 @@ update-authors:
$(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir)
TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs.*\.el,,"`; \
els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
${ETAGS} $$els
TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs.*\.el,,"`; \
els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \
${ETAGS} -o TAGS-LISP $$els
.SUFFIXES: .elc .el