From: Karl Heuer Date: Thu, 16 Oct 1997 18:17:52 +0000 (+0000) Subject: (L_getit): Always make named tags so that Emacs X-Git-Tag: emacs-20.3~3002 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a6351b48608188297bf7e7a4861490fa85d4183a;p=emacs.git (L_getit): Always make named tags so that Emacs completion on symbols containing `:' etc. works. (get_scheme): Likewise. --- diff --git a/lib-src/etags.c b/lib-src/etags.c index 3e3407bba5b..1df39a352fc 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -3446,7 +3446,7 @@ L_getit () if (cp == dbp) return; - pfnote ((CTAGS) ? savenstr (dbp, cp-dbp) : NULL, TRUE, + pfnote (savenstr (dbp, cp-dbp), TRUE, lb.buffer, cp - lb.buffer + 1, lineno, linecharno); } @@ -3596,7 +3596,7 @@ get_scheme () *cp && *cp != '(' && *cp != ')' && !isspace (*cp); cp++) continue; - pfnote ((CTAGS) ? savenstr (dbp, cp-dbp) : NULL, TRUE, + pfnote (savenstr (dbp, cp-dbp), TRUE, lb.buffer, cp - lb.buffer + 1, lineno, linecharno); }