comparison lib-src/etags.c @ 20071:dd3a2332a66f

(L_getit): Always make named tags so that Emacs completion on symbols containing `:' etc. works. (get_scheme): Likewise.
author Karl Heuer <kwzh@gnu.org>
date Thu, 16 Oct 1997 18:17:52 +0000
parents 77910f9661a9
children 2bf465c6cc6b
comparison
equal deleted inserted replaced
20070:9561d65fd9c3 20071:dd3a2332a66f
3444 cp++) 3444 cp++)
3445 continue; 3445 continue;
3446 if (cp == dbp) 3446 if (cp == dbp)
3447 return; 3447 return;
3448 3448
3449 pfnote ((CTAGS) ? savenstr (dbp, cp-dbp) : NULL, TRUE, 3449 pfnote (savenstr (dbp, cp-dbp), TRUE,
3450 lb.buffer, cp - lb.buffer + 1, lineno, linecharno); 3450 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
3451 } 3451 }
3452 3452
3453 void 3453 void
3454 Lisp_functions (inf) 3454 Lisp_functions (inf)
3594 /* Go till you get to white space or a syntactic break */ 3594 /* Go till you get to white space or a syntactic break */
3595 for (cp = dbp + 1; 3595 for (cp = dbp + 1;
3596 *cp && *cp != '(' && *cp != ')' && !isspace (*cp); 3596 *cp && *cp != '(' && *cp != ')' && !isspace (*cp);
3597 cp++) 3597 cp++)
3598 continue; 3598 continue;
3599 pfnote ((CTAGS) ? savenstr (dbp, cp-dbp) : NULL, TRUE, 3599 pfnote (savenstr (dbp, cp-dbp), TRUE,
3600 lb.buffer, cp - lb.buffer + 1, lineno, linecharno); 3600 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
3601 } 3601 }
3602 3602
3603 /* Find tags in TeX and LaTeX input files. */ 3603 /* Find tags in TeX and LaTeX input files. */
3604 3604