aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-02-10 20:00:05 +0000
committerDave Love2000-02-10 20:00:05 +0000
commit0dacfc4b8ac0ff4b4f1e68b2ade58d79407be582 (patch)
tree9e3b3a2374dfa8dae8e430dab82c4a1721a2b9b9
parenta0eddf92d5573360646fb75e8bedfe02b3e96fe8 (diff)
downloademacs-0dacfc4b8ac0ff4b4f1e68b2ade58d79407be582.tar.gz
emacs-0dacfc4b8ac0ff4b4f1e68b2ade58d79407be582.zip
(pfnote, new_pfnote, C_entries, prolog_pred, erlang_func): Add
`static' to definitions to keep pcc happy.
-rw-r--r--lib-src/etags.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c
index bbc3f690511..2a4ce864405 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -1576,7 +1576,7 @@ find_entries (file, inf)
1576} 1576}
1577 1577
1578/* Record a tag. */ 1578/* Record a tag. */
1579void 1579static void
1580pfnote (name, is_func, linestart, linelen, lno, cno) 1580pfnote (name, is_func, linestart, linelen, lno, cno)
1581 char *name; /* tag name, or NULL if unnamed */ 1581 char *name; /* tag name, or NULL if unnamed */
1582 bool is_func; /* tag is a function */ 1582 bool is_func; /* tag is a function */
@@ -1646,7 +1646,7 @@ pfnote (name, is_func, linestart, linelen, lno, cno)
1646 * `nonam'. 1646 * `nonam'.
1647 */ 1647 */
1648#define traditional_tag_style TRUE 1648#define traditional_tag_style TRUE
1649void 1649static void
1650new_pfnote (name, namelen, is_func, linestart, linelen, lno, cno) 1650new_pfnote (name, namelen, is_func, linestart, linelen, lno, cno)
1651 char *name; /* tag name, or NULL if unnamed */ 1651 char *name; /* tag name, or NULL if unnamed */
1652 int namelen; /* tag length */ 1652 int namelen; /* tag length */
@@ -2606,7 +2606,7 @@ make_C_tag (isfun)
2606} 2606}
2607 2607
2608 2608
2609void 2609static void
2610C_entries (c_ext, inf) 2610C_entries (c_ext, inf)
2611 int c_ext; /* extension of C */ 2611 int c_ext; /* extension of C */
2612 FILE *inf; /* input file */ 2612 FILE *inf; /* input file */
@@ -4429,7 +4429,7 @@ prolog_skip_comment (plb, inf)
4429 * Return the size of the name of the predicate, or 0 if no header 4429 * Return the size of the name of the predicate, or 0 if no header
4430 * was found. 4430 * was found.
4431 */ 4431 */
4432int 4432static int
4433prolog_pred (s, last) 4433prolog_pred (s, last)
4434 char *s; 4434 char *s;
4435 char *last; /* Name of last clause. */ 4435 char *last; /* Name of last clause. */
@@ -4586,7 +4586,7 @@ Erlang_functions (inf)
4586 * Return the size of the name of the function, or 0 if no function 4586 * Return the size of the name of the function, or 0 if no function
4587 * was found. 4587 * was found.
4588 */ 4588 */
4589int 4589static int
4590erlang_func (s, last) 4590erlang_func (s, last)
4591 char *s; 4591 char *s;
4592 char *last; /* Name of last clause. */ 4592 char *last; /* Name of last clause. */