aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/etags.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c
index b1ba819d644..305780082a8 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -25,7 +25,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
25 * Gnu Emacs TAGS format and modifications by RMS? 25 * Gnu Emacs TAGS format and modifications by RMS?
26 * Sam Kendall added C++. 26 * Sam Kendall added C++.
27 * 27 *
28 * Francesco Potorti` (pot@cnuce.cnr.it) is the current maintainer. 9.5 28 * Francesco Potorti` (pot@cnuce.cnr.it) is the current maintainer. 9.7
29 */ 29 */
30 30
31#ifdef HAVE_CONFIG_H 31#ifdef HAVE_CONFIG_H
@@ -1788,7 +1788,6 @@ consider_token (c, lp, tokp, c_ext, cblev, is_func)
1788 int cblev; /* IN: curly brace level */ 1788 int cblev; /* IN: curly brace level */
1789 logical *is_func; /* OUT */ 1789 logical *is_func; /* OUT */
1790{ 1790{
1791 logical firsttok; /* TRUE if have seen first token in ()'s */
1792 Stab_entry *tokse = stab_find (get_C_stab (c_ext), tokp->p, tokp->len); 1791 Stab_entry *tokse = stab_find (get_C_stab (c_ext), tokp->p, tokp->len);
1793 enum sym_type toktype = stab_type (tokse); 1792 enum sym_type toktype = stab_type (tokse);
1794 1793
@@ -2776,7 +2775,7 @@ prolog_getit (s, lineno, linecharno)
2776 *s = '\0'; 2775 *s = '\0';
2777 strcpy (nambuf, save_s); 2776 strcpy (nambuf, save_s);
2778 *s = tmpc; 2777 *s = tmpc;
2779 pfnote (nambuf, TRUE, save_s, strlen (nambuf), lineno, linecharno); 2778 pfnote (nambuf, TRUE, FALSE, save_s, strlen (nambuf), lineno, linecharno);
2780} 2779}
2781 2780
2782/* It is assumed that prolog predicate starts from column 0. */ 2781/* It is assumed that prolog predicate starts from column 0. */