aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/ChangeLog
diff options
context:
space:
mode:
authorFrancesco Potortì2002-06-27 10:52:05 +0000
committerFrancesco Potortì2002-06-27 10:52:05 +0000
commitd76132d04151365d27595041555142f4ce420492 (patch)
tree968dbf4f08b4fb6a748c405b12edba0d2bded225 /lib-src/ChangeLog
parent8c2693809154195ef848da165372be0424681afa (diff)
downloademacs-d76132d04151365d27595041555142f4ce420492.tar.gz
emacs-d76132d04151365d27595041555142f4ce420492.zip
Rewrote the description of implicit tag names in etags.c
Diffstat (limited to 'lib-src/ChangeLog')
-rw-r--r--lib-src/ChangeLog13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index af89fd1bb2c..e7a8bce7a19 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -15,10 +15,15 @@
15 15
162002-06-20 Francesco Potorti` <pot@gnu.org> 162002-06-20 Francesco Potorti` <pot@gnu.org>
17 17
18 * etags.c: Use, together with etags.el, an optimised form of tags, 18In short, the "optimised tags" are technically tags using "implicit tag
19 which are almost always unnamed. etags.el looks for an explicit 19names",
20 tag name, then for an implicit one. See make_tag for details. 20
21 The change is both forwards and backwards compatible. 21 * etags.c: Implement implicit tag names, that is, unnamed tags
22 whose name is automatically deduced by etags.el. The advantage is
23 that there is no explicit tag name in most tags, so the size of
24 the tags file is reduced, yet find-tag is able to do a match as
25 accurate as with named tags. See the comment in make_tag for
26 details.
22 (make_tag): New function (was the disabled function new_pfnote). 27 (make_tag): New function (was the disabled function new_pfnote).
23 (make_C_tag): Use it. 28 (make_C_tag): Use it.
24 29