annotate lib-src/etags.c @ 47218:66c5d66d21f6

(regex_tag_multiline, readline): Never pass pfnote a string that cannot be freed.
author Francesco Potortì <pot@gnu.org>
date Tue, 03 Sep 2002 15:21:07 +0000
parents e47f0756e65a
children 7ce72b4a2d94
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
35653
96f71478797d Add a coding: tag.
Eli Zaretskii <eliz@gnu.org>
parents: 35574
diff changeset
1 /* Tags file maker to go with GNU Emacs -*- coding: latin-1 -*-
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2 Copyright (C) 1984, 1987-1989, 1993-1995, 1998-2001, 2002
11231
3cf67df24e7f Update copyright.
Karl Heuer <kwzh@gnu.org>
parents: 10990
diff changeset
3 Free Software Foundation, Inc. and Ken Arnold
14186
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 14144
diff changeset
4
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5 This file is not considered part of GNU Emacs.
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
6
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
7 This program is free software; you can redistribute it and/or modify
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
8 it under the terms of the GNU General Public License as published by
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
9 the Free Software Foundation; either version 2 of the License, or
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
10 (at your option) any later version.
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
11
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
12 This program is distributed in the hope that it will be useful,
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
15 GNU General Public License for more details.
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
16
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
17 You should have received a copy of the GNU General Public License
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
18 along with this program; if not, write to the Free Software Foundation,
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
19 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
22 * Authors:
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
23 * Ctags originally by Ken Arnold.
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
24 * Fortran added by Jim Kleckner.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
25 * Ed Pelegri-Llopart added C typedefs.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
26 * Gnu Emacs TAGS format and modifications by RMS?
35740
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
27 * 1989 Sam Kendall added C++.
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
28 * 1992 Joseph B. Wells improved C and C++ parsing.
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
29 * 1993 Francesco Potort́ reorganised C and C++.
45925
5f3ac9accae3 Use, together with etags.el, an optimised form of tags,
Francesco Potortì <pot@gnu.org>
parents: 45918
diff changeset
30 * 1994 Line-by-line regexp tags by Tom Tromey.
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
31 * 2001 Nested classes by Francesco Potort́ (concept by Mykola Dzyuba).
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
32 * 2002 #line directives by Francesco Potort́.
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
33 *
45918
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
34 * Francesco Potort́ <pot@gnu.org> has maintained and improved it since 1993.
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
35 *
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
36 */
10761
7aa80669e697 * etags.c (C_entries): Bug corrected in xrealloc of token_str.
Francesco Potortì <pot@gnu.org>
parents: 10754
diff changeset
37
47218
66c5d66d21f6 (regex_tag_multiline, readline): Never pass pfnote a
Francesco Potortì <pot@gnu.org>
parents: 47157
diff changeset
38 char pot_etags_version[] = "@(#) pot revision number is $Revision: 16.55 $";
10801
32f98b512dd9 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
Francesco Potortì <pot@gnu.org>
parents: 10761
diff changeset
39
32f98b512dd9 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
Francesco Potortì <pot@gnu.org>
parents: 10761
diff changeset
40 #define TRUE 1
32f98b512dd9 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
Francesco Potortì <pot@gnu.org>
parents: 10761
diff changeset
41 #define FALSE 0
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
42
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
43 #ifdef DEBUG
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
44 # undef DEBUG
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
45 # define DEBUG TRUE
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
46 #else
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
47 # define DEBUG FALSE
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
48 # define NDEBUG /* disable assert */
10801
32f98b512dd9 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
Francesco Potortì <pot@gnu.org>
parents: 10761
diff changeset
49 #endif
10754
cd1c0b5e8634 * etags.c (C_entries): Initialise the new members of TOKEN.
Francesco Potortì <pot@gnu.org>
parents: 10623
diff changeset
50
26083
134b57acef68 Add support for large files. Merge glibc 2.1.2.
Paul Eggert <eggert@twinsun.com>
parents: 24879
diff changeset
51 #ifdef HAVE_CONFIG_H
134b57acef68 Add support for large files. Merge glibc 2.1.2.
Paul Eggert <eggert@twinsun.com>
parents: 24879
diff changeset
52 # include <config.h>
134b57acef68 Add support for large files. Merge glibc 2.1.2.
Paul Eggert <eggert@twinsun.com>
parents: 24879
diff changeset
53 /* On some systems, Emacs defines static as nothing for the sake
134b57acef68 Add support for large files. Merge glibc 2.1.2.
Paul Eggert <eggert@twinsun.com>
parents: 24879
diff changeset
54 of unexec. We don't want that here since we don't use unexec. */
134b57acef68 Add support for large files. Merge glibc 2.1.2.
Paul Eggert <eggert@twinsun.com>
parents: 24879
diff changeset
55 # undef static
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
56 # define ETAGS_REGEXPS /* use the regexp features */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
57 # define LONG_OPTIONS /* accept long options */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
58 # ifndef PTR /* for Xemacs */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
59 # define PTR void *
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
60 # endif
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
61 # ifndef __P /* for Xemacs */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
62 # define __P(args) args
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
63 # endif
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
64 #else
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
65 # if defined(__STDC__) && (__STDC__ || defined(__SUNPRO_C))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
66 # define __P(args) args /* use prototypes */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
67 # define PTR void * /* for generic pointers */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
68 # else
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
69 # define __P(args) () /* no prototypes */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
70 # define const /* remove const for old compilers' sake */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
71 # define PTR long * /* don't use void* */
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
72 # endif
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
73 #endif /* !HAVE_CONFIG_H */
26083
134b57acef68 Add support for large files. Merge glibc 2.1.2.
Paul Eggert <eggert@twinsun.com>
parents: 24879
diff changeset
74
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
75 #ifndef _GNU_SOURCE
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
76 # define _GNU_SOURCE 1 /* enables some compiler checks on GNU */
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
77 #endif
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
78
35740
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
79 /* WIN32_NATIVE is for Xemacs.
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
80 MSDOS, WINDOWSNT, DOS_NT are for Emacs. */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
81 #ifdef WIN32_NATIVE
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
82 # undef MSDOS
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
83 # undef WINDOWSNT
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
84 # define WINDOWSNT
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
85 #endif /* WIN32_NATIVE */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
86
5448
18de002e47dd (main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents: 5044
diff changeset
87 #ifdef MSDOS
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
88 # undef MSDOS
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
89 # define MSDOS TRUE
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
90 # include <fcntl.h>
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
91 # include <sys/param.h>
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
92 # include <io.h>
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
93 # ifndef HAVE_CONFIG_H
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
94 # define DOS_NT
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
95 # include <sys/config.h>
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
96 # endif
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
97 #else
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
98 # define MSDOS FALSE
5448
18de002e47dd (main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents: 5044
diff changeset
99 #endif /* MSDOS */
18de002e47dd (main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents: 5044
diff changeset
100
9773
bd49556a7552 (main, etags_getcwd): Test DOS_NT instead of MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 9635
diff changeset
101 #ifdef WINDOWSNT
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
102 # include <stdlib.h>
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
103 # include <fcntl.h>
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
104 # include <string.h>
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
105 # include <direct.h>
14982
b470e33ce4a9 [WINDOWSNT]: Include io.h.
Richard M. Stallman <rms@gnu.org>
parents: 14924
diff changeset
106 # include <io.h>
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
107 # define MAXPATHLEN _MAX_PATH
35740
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
108 # undef HAVE_NTGUI
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
109 # undef DOS_NT
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
110 # define DOS_NT
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
111 # ifndef HAVE_GETCWD
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
112 # define HAVE_GETCWD
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
113 # endif /* undef HAVE_GETCWD */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
114 #else /* !WINDOWSNT */
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
115 # ifdef STDC_HEADERS
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
116 # include <stdlib.h>
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
117 # include <string.h>
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
118 # else
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
119 extern char *getenv ();
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
120 # endif
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
121 #endif /* !WINDOWSNT */
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
122
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
123 #ifdef HAVE_UNISTD_H
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
124 # include <unistd.h>
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
125 #else
35740
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
126 # if defined (HAVE_GETCWD) && !defined (WINDOWSNT)
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
127 extern char *getcwd (char *buf, size_t size);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
128 # endif
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
129 #endif /* HAVE_UNISTD_H */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
130
3921
e5e5b3634dd0 * etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents: 3838
diff changeset
131 #include <stdio.h>
e5e5b3634dd0 * etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents: 3838
diff changeset
132 #include <ctype.h>
9975
e21b0674f37c * etags.c (<errno.h>): #include added.
Francesco Potortì <pot@gnu.org>
parents: 9773
diff changeset
133 #include <errno.h>
e21b0674f37c * etags.c (<errno.h>): #include added.
Francesco Potortì <pot@gnu.org>
parents: 9773
diff changeset
134 #ifndef errno
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
135 extern int errno;
9975
e21b0674f37c * etags.c (<errno.h>): #include added.
Francesco Potortì <pot@gnu.org>
parents: 9773
diff changeset
136 #endif
3921
e5e5b3634dd0 * etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents: 3838
diff changeset
137 #include <sys/types.h>
e5e5b3634dd0 * etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents: 3838
diff changeset
138 #include <sys/stat.h>
e5e5b3634dd0 * etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents: 3838
diff changeset
139
35758
aa069bbee4c8 Work around small preprocessor bugs in sunos4 pcc and MinGW.
Francesco Potortì <pot@gnu.org>
parents: 35741
diff changeset
140 #include <assert.h>
aa069bbee4c8 Work around small preprocessor bugs in sunos4 pcc and MinGW.
Francesco Potortì <pot@gnu.org>
parents: 35741
diff changeset
141 #ifdef NDEBUG
aa069bbee4c8 Work around small preprocessor bugs in sunos4 pcc and MinGW.
Francesco Potortì <pot@gnu.org>
parents: 35741
diff changeset
142 # undef assert /* some systems have a buggy assert.h */
aa069bbee4c8 Work around small preprocessor bugs in sunos4 pcc and MinGW.
Francesco Potortì <pot@gnu.org>
parents: 35741
diff changeset
143 # define assert(x) ((void) 0)
35741
e0acf4b43873 (assert) [__MINGW32__]: Redefine assert to work around a
Andrew Innes <andrewi@gnu.org>
parents: 35740
diff changeset
144 #endif
e0acf4b43873 (assert) [__MINGW32__]: Redefine assert to work around a
Andrew Innes <andrewi@gnu.org>
parents: 35740
diff changeset
145
4804
810826b6e19a * etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents: 4750
diff changeset
146 #if !defined (S_ISREG) && defined (S_IFREG)
810826b6e19a * etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents: 4750
diff changeset
147 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
810826b6e19a * etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents: 4750
diff changeset
148 #endif
810826b6e19a * etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents: 4750
diff changeset
149
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
150 #ifdef LONG_OPTIONS
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
151 # include <getopt.h>
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
152 #else
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
153 # define getopt_long(argc,argv,optstr,lopts,lind) getopt (argc, argv, optstr)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
154 extern char *optarg;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
155 extern int optind, opterr;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
156 #endif /* LONG_OPTIONS */
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
157
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
158 #ifdef ETAGS_REGEXPS
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
159 # ifndef HAVE_CONFIG_H /* this is a standalone compilation */
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
160 # ifdef __CYGWIN__ /* compiling on Cygwin */
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
161 !!! NOTICE !!!
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
162 the regex.h distributed with Cygwin is not compatible with etags, alas!
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
163 If you want regular expression support, you should delete this notice and
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
164 arrange to use the GNU regex.h and regex.c.
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
165 # endif
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
166 # endif
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
167 # include <regex.h>
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
168 #endif /* ETAGS_REGEXPS */
3921
e5e5b3634dd0 * etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents: 3838
diff changeset
169
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
170 /* Define CTAGS to make the program "ctags" compatible with the usual one.
17168
53314a257690 * etags.c (add_regex): reset *putbuf before using it.
Francesco Potortì <pot@gnu.org>
parents: 16733
diff changeset
171 Leave it undefined to make the program "etags", which makes emacs-style
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
172 tag tables and tags typedefs, #defines and struct/union/enum by default. */
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
173 #ifdef CTAGS
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
174 # undef CTAGS
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
175 # define CTAGS TRUE
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
176 #else
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
177 # define CTAGS FALSE
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
178 #endif
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
179
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
180 /* Exit codes for success and failure. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
181 #ifdef VMS
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
182 # define GOOD 1
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
183 # define BAD 0
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
184 #else
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
185 # define GOOD 0
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
186 # define BAD 1
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
187 #endif
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
188
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
189 #define streq(s,t) (assert((s)!=NULL || (t)!=NULL), !strcmp (s, t))
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
190 #define strcaseeq(s,t) (assert((s)!=NULL && (t)!=NULL), !etags_strcasecmp (s, t))
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
191 #define strneq(s,t,n) (assert((s)!=NULL || (t)!=NULL), !strncmp (s, t, n))
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
192 #define strncaseeq(s,t,n) (assert((s)!=NULL && (t)!=NULL), !etags_strncasecmp (s, t, n))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
193
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
194 #define CHARS 256 /* 2^sizeof(char) */
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
195 #define CHAR(x) ((unsigned int)(x) & (CHARS - 1))
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
196 #define iswhite(c) (_wht[CHAR(c)]) /* c is white (see white) */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
197 #define notinname(c) (_nin[CHAR(c)]) /* c is not in a name (see nonam) */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
198 #define begtoken(c) (_btk[CHAR(c)]) /* c can start token (see begtk) */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
199 #define intoken(c) (_itk[CHAR(c)]) /* c can be in token (see midtk) */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
200 #define endtoken(c) (_etk[CHAR(c)]) /* c ends tokens (see endtk) */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
201
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
202 #define ISALNUM(c) isalnum (CHAR(c))
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
203 #define ISALPHA(c) isalpha (CHAR(c))
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
204 #define ISDIGIT(c) isdigit (CHAR(c))
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
205 #define ISLOWER(c) islower (CHAR(c))
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
206
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
207 #define lowcase(c) tolower (CHAR(c))
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
208 #define upcase(c) toupper (CHAR(c))
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
209
12344
7e7941d8cceb * etags.c (find_entries): rewind before rereading the input file.
Francesco Potortì <pot@gnu.org>
parents: 12242
diff changeset
210
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
211 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
212 * xnew, xrnew -- allocate, reallocate storage
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
213 *
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
214 * SYNOPSIS: Type *xnew (int n, Type);
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
215 * void xrnew (OldPointer, int n, Type);
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
216 */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
217 #if DEBUG
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
218 # include "chkmalloc.h"
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
219 # define xnew(n,Type) ((Type *) trace_malloc (__FILE__, __LINE__, \
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
220 (n) * sizeof (Type)))
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
221 # define xrnew(op,n,Type) ((op) = (Type *) trace_realloc (__FILE__, __LINE__, \
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
222 (char *) (op), (n) * sizeof (Type)))
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
223 #else
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
224 # define xnew(n,Type) ((Type *) xmalloc ((n) * sizeof (Type)))
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
225 # define xrnew(op,n,Type) ((op) = (Type *) xrealloc ( \
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
226 (char *) (op), (n) * sizeof (Type)))
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
227 #endif
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
228
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
229 #define bool int
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
230
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
231 typedef void Lang_function __P((FILE *));
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
232
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
233 typedef struct
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
234 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
235 char *suffix; /* file name suffix for this compressor */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
236 char *command; /* takes one arg and decompresses to stdout */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
237 } compressor;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
238
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
239 typedef struct
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
240 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
241 char *name; /* language name */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
242 bool metasource; /* source used to generate other sources */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
243 Lang_function *function; /* parse function */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
244 char **filenames; /* names of this language's files */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
245 char **suffixes; /* name suffixes of this language's files */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
246 char **interpreters; /* interpreters for this language */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
247 } language;
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
248
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
249 typedef struct fdesc
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
250 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
251 struct fdesc *next; /* for the linked list */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
252 char *infname; /* uncompressed input file name */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
253 char *infabsname; /* absolute uncompressed input file name */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
254 char *infabsdir; /* absolute dir of input file */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
255 char *taggedfname; /* file name to write in tagfile */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
256 language *lang; /* language of file */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
257 char *prop; /* file properties to write in tagfile */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
258 bool usecharno; /* etags tags shall contain char number */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
259 bool written; /* entry written in the tags file */
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
260 } fdesc;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
261
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
262 typedef struct node_st
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
263 { /* sorting structure */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
264 struct node_st *left, *right; /* left and right sons */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
265 fdesc *fdp; /* description of file to whom tag belongs */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
266 char *name; /* tag name */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
267 char *regex; /* search regexp */
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
268 bool valid; /* write this tag on the tag file */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
269 bool is_func; /* function tag: use regexp in CTAGS mode */
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
270 bool been_warned; /* warning already given for duplicated tag */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
271 int lno; /* line number tag is on */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
272 long cno; /* character number line starts on */
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
273 } node;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
274
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
275 /*
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
276 * A `linebuffer' is a structure which holds a line of text.
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
277 * `readline_internal' reads a line from a stream into a linebuffer
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
278 * and works regardless of the length of the line.
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
279 * SIZE is the size of BUFFER, LEN is the length of the string in
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
280 * BUFFER after readline reads it.
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
281 */
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
282 typedef struct
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
283 {
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
284 long size;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
285 int len;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
286 char *buffer;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
287 } linebuffer;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
288
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
289 /* Used to support mixing of --lang and file names. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
290 typedef struct
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
291 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
292 enum {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
293 at_language, /* a language specification */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
294 at_regexp, /* a regular expression */
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
295 at_filename, /* a file name */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
296 at_stdin /* read from stdin here */
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
297 } arg_type; /* argument type */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
298 language *lang; /* language associated with the argument */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
299 char *what; /* the argument itself */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
300 } argument;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
301
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
302 #ifdef ETAGS_REGEXPS
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
303 /* Structure defining a regular expression. */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
304 typedef struct regexp
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
305 {
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
306 struct regexp *p_next; /* pointer to next in list */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
307 language *lang; /* if set, use only for this language */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
308 char *pattern; /* the regexp pattern */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
309 char *name; /* tag name */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
310 struct re_pattern_buffer *pat; /* the compiled pattern */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
311 struct re_registers regs; /* re registers */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
312 bool error_signaled; /* already signaled for this regexp */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
313 bool force_explicit_name; /* do not allow implict tag name */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
314 bool ignore_case; /* ignore case when matching */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
315 bool multi_line; /* do a multi-line match on the whole file */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
316 } regexp;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
317 #endif /* ETAGS_REGEXPS */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
318
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
319
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
320 /* Many compilers barf on this:
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
321 Lang_function Ada_funcs;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
322 so let's write it this way */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
323 static void Ada_funcs __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
324 static void Asm_labels __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
325 static void C_entries __P((int c_ext, FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
326 static void default_C_entries __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
327 static void plain_C_entries __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
328 static void Cjava_entries __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
329 static void Cobol_paragraphs __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
330 static void Cplusplus_entries __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
331 static void Cstar_entries __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
332 static void Erlang_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
333 static void Fortran_functions __P((FILE *));
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
334 static void HTML_labels __P((FILE *));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
335 static void Lisp_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
336 static void Makefile_targets __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
337 static void Pascal_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
338 static void Perl_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
339 static void PHP_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
340 static void Postscript_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
341 static void Prolog_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
342 static void Python_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
343 static void Scheme_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
344 static void TeX_commands __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
345 static void Texinfo_nodes __P((FILE *));
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
346 static void Yacc_entries __P((FILE *));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
347 static void just_read_file __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
348
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
349 static void print_language_names __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
350 static void print_version __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
351 static void print_help __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
352 int main __P((int, char **));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
353
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
354 static compressor *get_compressor_from_suffix __P((char *, char **));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
355 static language *get_language_from_langname __P((const char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
356 static language *get_language_from_interpreter __P((char *));
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
357 static language *get_language_from_filename __P((char *, bool));
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
358 static void readline __P((linebuffer *, FILE *));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
359 static long readline_internal __P((linebuffer *, FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
360 static bool nocase_tail __P((char *));
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
361 static void get_tag __P((char *, char **));
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
362
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
363 #ifdef ETAGS_REGEXPS
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
364 static void analyse_regex __P((char *));
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
365 static void free_regexps __P((void));
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
366 static void regex_tag_multiline __P((void));
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
367 #endif /* ETAGS_REGEXPS */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
368 static void error __P((const char *, const char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
369 static void suggest_asking_for_help __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
370 void fatal __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
371 static void pfatal __P((char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
372 static void add_node __P((node *, node **));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
373
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
374 static void init __P((void));
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
375 static void process_file_name __P((char *, language *));
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
376 static void process_file __P((FILE *, char *, language *));
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
377 static void find_entries __P((FILE *));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
378 static void free_tree __P((node *));
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
379 static void free_fdesc __P((fdesc *));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
380 static void pfnote __P((char *, bool, char *, int, int, long));
45925
5f3ac9accae3 Use, together with etags.el, an optimised form of tags,
Francesco Potortì <pot@gnu.org>
parents: 45918
diff changeset
381 static void make_tag __P((char *, int, bool, char *, int, int, long));
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
382 static void invalidate_nodes __P((fdesc *, node **));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
383 static void put_entries __P((node *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
384
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
385 static char *concat __P((char *, char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
386 static char *skip_spaces __P((char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
387 static char *skip_non_spaces __P((char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
388 static char *savenstr __P((char *, int));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
389 static char *savestr __P((char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
390 static char *etags_strchr __P((const char *, int));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
391 static char *etags_strrchr __P((const char *, int));
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
392 static int etags_strcasecmp __P((const char *, const char *));
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
393 static int etags_strncasecmp __P((const char *, const char *, int));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
394 static char *etags_getcwd __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
395 static char *relative_filename __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
396 static char *absolute_filename __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
397 static char *absolute_dirname __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
398 static bool filename_is_absolute __P((char *f));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
399 static void canonicalize_filename __P((char *));
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
400 static void linebuffer_init __P((linebuffer *));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
401 static void linebuffer_setlen __P((linebuffer *, int));
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
402 static PTR xmalloc __P((unsigned int));
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
403 static PTR xrealloc __P((char *, unsigned int));
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
404
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
405
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
406 static char searchar = '/'; /* use /.../ searches */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
407
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
408 static char *tagfile; /* output file */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
409 static char *progname; /* name this program was invoked with */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
410 static char *cwd; /* current working directory */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
411 static char *tagfiledir; /* directory of tagfile */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
412 static FILE *tagf; /* ioptr for tags file */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
413
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
414 static fdesc *fdhead; /* head of file description list */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
415 static fdesc *curfdp; /* current file description */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
416 static int lineno; /* line number of current line */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
417 static long charno; /* current character number */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
418 static long linecharno; /* charno of start of current line */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
419 static char *dbp; /* pointer to start of current tag */
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
420
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
421 static const int invalidcharno = -1;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
422
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
423 static node *nodehead; /* the head of the binary tree of tags */
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
424 static node *last_node; /* the last node created */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
425
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
426 static linebuffer lb; /* the current line */
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
427 static linebuffer filebuf; /* a buffer containing the whole file */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
428 static linebuffer token_name; /* a buffer containing a tag name */
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
429
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
430 /* boolean "functions" (see init) */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
431 static bool _wht[CHARS], _nin[CHARS], _itk[CHARS], _btk[CHARS], _etk[CHARS];
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
432 static char
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
433 /* white chars */
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
434 *white = " \f\t\n\r\v",
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
435 /* not in a name */
45925
5f3ac9accae3 Use, together with etags.el, an optimised form of tags,
Francesco Potortì <pot@gnu.org>
parents: 45918
diff changeset
436 *nonam = " \f\t\n\r()=,;", /* look at make_tag before modifying! */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
437 /* token ending chars */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
438 *endtk = " \t\n\r\"'#()[]{}=-+%*/&|^~!<>;,.:?",
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
439 /* token starting chars */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
440 *begtk = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz$~@",
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
441 /* valid in-token chars */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
442 *midtk = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz$0123456789";
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
443
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
444 static bool append_to_tagfile; /* -a: append to tags */
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
445 /* The next four default to TRUE for etags, but to FALSE for ctags. */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
446 static bool typedefs; /* -t: create tags for C and Ada typedefs */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
447 static bool typedefs_or_cplusplus; /* -T: create tags for C typedefs, level */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
448 /* 0 struct/enum/union decls, and C++ */
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
449 /* member functions. */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
450 static bool constantypedefs; /* -d: create tags for C #define, enum */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
451 /* constants and variables. */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
452 /* -D: opposite of -d. Default under ctags. */
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
453 static bool globals; /* create tags for global variables */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
454 static bool declarations; /* --declarations: tag them and extern in C&Co*/
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
455 static bool members; /* create tags for C member variables */
45643
5cee84ffef53 (main): Avoid a buffer overrun with sprintf.
Francesco Potortì <pot@gnu.org>
parents: 45535
diff changeset
456 static bool no_line_directive; /* ignore #line directives (undocumented) */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
457 static bool update; /* -u: update tags */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
458 static bool vgrind_style; /* -v: create vgrind style index output */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
459 static bool no_warnings; /* -w: suppress warnings */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
460 static bool cxref_style; /* -x: create cxref style output */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
461 static bool cplusplus; /* .[hc] means C++, not C */
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
462 static bool ignoreindent; /* -I: ignore indentation in C */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
463 static bool packages_only; /* --packages-only: in Ada, only tag packages*/
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
464
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
465 #define STDIN 0x1001 /* returned by getopt_long on --parse-stdin */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
466 static bool parsing_stdin; /* --parse-stdin used */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
467
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
468 #ifdef ETAGS_REGEXPS
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
469 static regexp *p_head; /* list of all regexps */
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
470 static bool need_filebuf; /* some regexes are multi-line */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
471 #else
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
472 # define need_filebuf FALSE
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
473 #endif /* ETAGS_REGEXPS */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
474
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
475 #ifdef LONG_OPTIONS
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
476 static struct option longopts[] =
10047
9b284d98b102 * etags.c (print_help): print --regex usage for ctags also.
Francesco Potortì <pot@gnu.org>
parents: 9976
diff changeset
477 {
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
478 { "packages-only", no_argument, &packages_only, TRUE },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
479 { "c++", no_argument, NULL, 'C' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
480 { "declarations", no_argument, &declarations, TRUE },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
481 { "no-line-directive", no_argument, &no_line_directive, TRUE },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
482 { "help", no_argument, NULL, 'h' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
483 { "help", no_argument, NULL, 'H' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
484 { "ignore-indentation", no_argument, NULL, 'I' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
485 { "language", required_argument, NULL, 'l' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
486 { "members", no_argument, &members, TRUE },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
487 { "no-members", no_argument, &members, FALSE },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
488 { "output", required_argument, NULL, 'o' },
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
489 #ifdef ETAGS_REGEXPS
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
490 { "regex", required_argument, NULL, 'r' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
491 { "no-regex", no_argument, NULL, 'R' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
492 { "ignore-case-regex", required_argument, NULL, 'c' },
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
493 #endif /* ETAGS_REGEXPS */
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
494 { "parse-stdin", required_argument, NULL, STDIN },
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
495 { "version", no_argument, NULL, 'V' },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
496
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
497 #if CTAGS /* Etags options */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
498 { "backward-search", no_argument, NULL, 'B' },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
499 { "cxref", no_argument, NULL, 'x' },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
500 { "defines", no_argument, NULL, 'd' },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
501 { "globals", no_argument, &globals, TRUE },
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
502 { "typedefs", no_argument, NULL, 't' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
503 { "typedefs-and-c++", no_argument, NULL, 'T' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
504 { "update", no_argument, NULL, 'u' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
505 { "vgrind", no_argument, NULL, 'v' },
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
506 { "no-warn", no_argument, NULL, 'w' },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
507
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
508 #else /* Ctags options */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
509 { "append", no_argument, NULL, 'a' },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
510 { "no-defines", no_argument, NULL, 'D' },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
511 { "no-globals", no_argument, &globals, FALSE },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
512 { "include", required_argument, NULL, 'i' },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
513 #endif
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
514 { NULL }
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
515 };
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
516 #endif /* LONG_OPTIONS */
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
517
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
518 static compressor compressors[] =
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
519 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
520 { "z", "gzip -d -c"},
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
521 { "Z", "gzip -d -c"},
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
522 { "gz", "gzip -d -c"},
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
523 { "GZ", "gzip -d -c"},
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
524 { "bz2", "bzip2 -d -c" },
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
525 { NULL }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
526 };
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
527
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
528 /*
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
529 * Language stuff.
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
530 */
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
531
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
532 /* Ada code */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
533 static char *Ada_suffixes [] =
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
534 { "ads", "adb", "ada", NULL };
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
535
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
536 /* Assembly code */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
537 static char *Asm_suffixes [] =
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
538 { "a", /* Unix assembler */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
539 "asm", /* Microcontroller assembly */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
540 "def", /* BSO/Tasking definition includes */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
541 "inc", /* Microcontroller include files */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
542 "ins", /* Microcontroller include files */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
543 "s", "sa", /* Unix assembler */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
544 "S", /* cpp-processed Unix assembler */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
545 "src", /* BSO/Tasking C compiler output */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
546 NULL
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
547 };
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
548
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
549 /* Note that .c and .h can be considered C++, if the --c++ flag was
35740
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
550 given, or if the `class' keyowrd is met inside the file.
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
551 That is why default_C_entries is called for these. */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
552 static char *default_C_suffixes [] =
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
553 { "c", "h", NULL };
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
554
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
555 static char *Cplusplus_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
556 { "C", "c++", "cc", "cpp", "cxx", "H", "h++", "hh", "hpp", "hxx",
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
557 "M", /* Objective C++ */
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
558 "pdb", /* Postscript with C syntax */
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
559 NULL };
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
560
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
561 static char *Cjava_suffixes [] =
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
562 { "java", NULL };
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
563
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
564 static char *Cobol_suffixes [] =
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
565 { "COB", "cob", NULL };
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
566
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
567 static char *Cstar_suffixes [] =
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
568 { "cs", "hs", NULL };
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
569
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
570 static char *Erlang_suffixes [] =
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
571 { "erl", "hrl", NULL };
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
572
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
573 static char *Fortran_suffixes [] =
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
574 { "F", "f", "f90", "for", NULL };
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
575
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
576 static char *HTML_suffixes [] =
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
577 { "htm", "html", "shtml", NULL };
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
578
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
579 static char *Lisp_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
580 { "cl", "clisp", "el", "l", "lisp", "LSP", "lsp", "ml", NULL };
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
581
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
582 static char *Makefile_filenames [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
583 { "Makefile", "makefile", "GNUMakefile", "Makefile.in", "Makefile.am", NULL};
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
584
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
585 static char *Pascal_suffixes [] =
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
586 { "p", "pas", NULL };
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
587
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
588 static char *Perl_suffixes [] =
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
589 { "pl", "pm", NULL };
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
590
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
591 static char *Perl_interpreters [] =
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
592 { "perl", "@PERL@", NULL };
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
593
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
594 static char *PHP_suffixes [] =
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
595 { "php", "php3", "php4", NULL };
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
596
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
597 static char *plain_C_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
598 { "lm", /* Objective lex file */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
599 "m", /* Objective C file */
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
600 "pc", /* Pro*C file */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
601 NULL };
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
602
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
603 static char *Postscript_suffixes [] =
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
604 { "ps", "psw", NULL }; /* .psw is for PSWrap */
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
605
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
606 static char *Prolog_suffixes [] =
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
607 { "prolog", NULL };
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
608
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
609 static char *Python_suffixes [] =
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
610 { "py", NULL };
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
611
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
612 /* Can't do the `SCM' or `scm' prefix with a version number. */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
613 static char *Scheme_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
614 { "oak", "sch", "scheme", "SCM", "scm", "SM", "sm", "ss", "t", NULL };
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
615
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
616 static char *TeX_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
617 { "bib", "clo", "cls", "ltx", "sty", "TeX", "tex", NULL };
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
618
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
619 static char *Texinfo_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
620 { "texi", "texinfo", "txi", NULL };
28663
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
621
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
622 static char *Yacc_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
623 { "y", "y++", "ym", "yxx", "yy", NULL }; /* .ym is Objective yacc file */
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
624
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
625 /*
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
626 * Table of languages.
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
627 *
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
628 * It is ok for a given function to be listed under more than one
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
629 * name. I just didn't.
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
630 */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
631
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
632 static language lang_names [] =
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
633 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
634 { "ada", FALSE, Ada_funcs, NULL, Ada_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
635 { "asm", FALSE, Asm_labels, NULL, Asm_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
636 { "c", FALSE, default_C_entries, NULL, default_C_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
637 { "c++", FALSE, Cplusplus_entries, NULL, Cplusplus_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
638 { "c*", FALSE, Cstar_entries, NULL, Cstar_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
639 { "cobol", FALSE, Cobol_paragraphs, NULL, Cobol_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
640 { "erlang", FALSE, Erlang_functions, NULL, Erlang_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
641 { "fortran", FALSE, Fortran_functions, NULL, Fortran_suffixes, NULL },
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
642 { "html", FALSE, HTML_labels, NULL, HTML_suffixes, NULL },
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
643 { "java", FALSE, Cjava_entries, NULL, Cjava_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
644 { "lisp", FALSE, Lisp_functions, NULL, Lisp_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
645 { "makefile", FALSE, Makefile_targets, Makefile_filenames, NULL, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
646 { "pascal", FALSE, Pascal_functions, NULL, Pascal_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
647 { "perl", FALSE, Perl_functions,NULL, Perl_suffixes, Perl_interpreters },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
648 { "php", FALSE, PHP_functions, NULL, PHP_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
649 { "postscript",FALSE, Postscript_functions,NULL, Postscript_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
650 { "proc", FALSE, plain_C_entries, NULL, plain_C_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
651 { "prolog", FALSE, Prolog_functions, NULL, Prolog_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
652 { "python", FALSE, Python_functions, NULL, Python_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
653 { "scheme", FALSE, Scheme_functions, NULL, Scheme_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
654 { "tex", FALSE, TeX_commands, NULL, TeX_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
655 { "texinfo", FALSE, Texinfo_nodes, NULL, Texinfo_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
656 { "yacc", TRUE, Yacc_entries, NULL, Yacc_suffixes, NULL },
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
657 { "auto", FALSE, NULL }, /* default guessing scheme */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
658 { "none", FALSE, just_read_file }, /* regexp matching only */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
659 { NULL, FALSE, NULL } /* end of list */
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
660 };
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
661
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
662
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
663 static void
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
664 print_language_names ()
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
665 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
666 language *lang;
35302
6a51ef53518f 2001-01-15 Francesco Potorti` <pot@pot.cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 35297
diff changeset
667 char **name, **ext;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
668
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
669 puts ("\nThese are the currently supported languages, along with the\n\
35302
6a51ef53518f 2001-01-15 Francesco Potorti` <pot@pot.cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 35297
diff changeset
670 default file names and dot suffixes:");
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
671 for (lang = lang_names; lang->name != NULL; lang++)
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
672 {
35302
6a51ef53518f 2001-01-15 Francesco Potorti` <pot@pot.cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 35297
diff changeset
673 printf (" %-*s", 10, lang->name);
6a51ef53518f 2001-01-15 Francesco Potorti` <pot@pot.cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 35297
diff changeset
674 if (lang->filenames != NULL)
6a51ef53518f 2001-01-15 Francesco Potorti` <pot@pot.cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 35297
diff changeset
675 for (name = lang->filenames; *name != NULL; name++)
6a51ef53518f 2001-01-15 Francesco Potorti` <pot@pot.cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 35297
diff changeset
676 printf (" %s", *name);
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
677 if (lang->suffixes != NULL)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
678 for (ext = lang->suffixes; *ext != NULL; ext++)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
679 printf (" .%s", *ext);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
680 puts ("");
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
681 }
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
682 puts ("Where `auto' means use default language for files based on file\n\
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
683 name suffix, and `none' means only do regexp processing on files.\n\
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
684 If no language is specified and no matching suffix is found,\n\
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
685 the first line of the file is read for a sharp-bang (#!) sequence\n\
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
686 followed by the name of an interpreter. If no such sequence is found,\n\
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
687 Fortran is tried first; if no tags are found, C is tried next.\n\
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
688 When parsing any C file, a \"class\" keyword switches to C++.\n\
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
689 Compressed files are supported using gzip and bzip2.");
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
690 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
691
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
692 #ifndef EMACS_NAME
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
693 # define EMACS_NAME "standalone"
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
694 #endif
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
695 #ifndef VERSION
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
696 # define VERSION "version"
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
697 #endif
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
698 static void
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
699 print_version ()
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
700 {
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
701 printf ("%s (%s %s)\n", (CTAGS) ? "ctags" : "etags", EMACS_NAME, VERSION);
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
702 puts ("Copyright (C) 2002 Free Software Foundation, Inc. and Ken Arnold");
16373
d50369f4bb41 * etags.c (print_version): Print copyright info.
Francesco Potortì <pot@gnu.org>
parents: 16086
diff changeset
703 puts ("This program is distributed under the same terms as Emacs");
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
704
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
705 exit (GOOD);
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
706 }
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
707
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
708 static void
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
709 print_help ()
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
710 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
711 printf ("Usage: %s [options] [[regex-option ...] file-name] ...\n\
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
712 \n\
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
713 These are the options accepted by %s.\n", progname, progname);
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
714 #ifdef LONG_OPTIONS
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
715 puts ("You may use unambiguous abbreviations for the long option names.");
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
716 #else
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
717 puts ("Long option names do not work with this executable, as it is not\n\
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
718 linked with GNU getopt.");
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
719 #endif /* LONG_OPTIONS */
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
720 puts (" A - as file name means read names from stdin (one per line).\n\
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
721 Absolute names are stored in the output file as they are.\n\
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
722 Relative ones are stored relative to the output file's directory.\n");
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
723
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
724 if (!CTAGS)
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
725 puts ("-a, --append\n\
4126
9a906e5f9b28 * etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents: 4052
diff changeset
726 Append tag entries to existing tags file.");
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
727
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
728 puts ("--packages-only\n\
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
729 For Ada files, only generate tags for packages.");
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
730
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
731 if (CTAGS)
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
732 puts ("-B, --backward-search\n\
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
733 Write the search commands for the tag entries using '?', the\n\
6945
63ab519f7057 * etags.c (main, print_help): eliminate the -F option.
Francesco Potortì <pot@gnu.org>
parents: 6944
diff changeset
734 backward-search command instead of '/', the forward-search command.");
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
735
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
736 /* This option is mostly obsolete, because etags can now automatically
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
737 detect C++. Retained for backward compatibility and for debugging and
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
738 experimentation. In principle, we could want to tag as C++ even
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
739 before any "class" keyword.
4126
9a906e5f9b28 * etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents: 4052
diff changeset
740 puts ("-C, --c++\n\
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
741 Treat files whose name suffix defaults to C language as C++ files.");
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
742 */
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
743
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
744 puts ("--declarations\n\
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
745 In C and derived languages, create tags for function declarations,");
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
746 if (CTAGS)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
747 puts ("\tand create tags for extern variables if --globals is used.");
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
748 else
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
749 puts
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
750 ("\tand create tags for extern variables unless --no-globals is used.");
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
751
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
752 if (CTAGS)
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
753 puts ("-d, --defines\n\
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
754 Create tag entries for C #define constants and enum constants, too.");
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
755 else
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
756 puts ("-D, --no-defines\n\
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
757 Don't create tag entries for C #define constants and enum constants.\n\
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
758 This makes the tags file smaller.");
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
759
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
760 if (!CTAGS)
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
761 puts ("-i FILE, --include=FILE\n\
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
762 Include a note in tag file indicating that, when searching for\n\
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
763 a tag, one should also consult the tags file FILE after\n\
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
764 checking the current file.");
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
765
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
766 puts ("-l LANG, --language=LANG\n\
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
767 Force the following files to be considered as written in the\n\
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
768 named language up to the next --language=LANG option.");
10047
9b284d98b102 * etags.c (print_help): print --regex usage for ctags also.
Francesco Potortì <pot@gnu.org>
parents: 9976
diff changeset
769
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
770 if (CTAGS)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
771 puts ("--globals\n\
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
772 Create tag entries for global variables in some languages.");
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
773 else
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
774 puts ("--no-globals\n\
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
775 Do not create tag entries for global variables in some\n\
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
776 languages. This makes the tags file smaller.");
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
777 puts ("--members\n\
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
778 Create tag entries for member variables in some languages.");
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
779
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
780 #ifdef ETAGS_REGEXPS
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
781 puts ("-r REGEXP, --regex=REGEXP or --regex=@regexfile\n\
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
782 Make a tag for each line matching a regular expression pattern\n\
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
783 in the following files. {LANGUAGE}REGEXP uses REGEXP for LANGUAGE\n\
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
784 files only. REGEXFILE is a file containing one REGEXP per line.\n\
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
785 REGEXP takes the form /TAGREGEXP/TAGNAME/MODS, where TAGNAME/ is\n\
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
786 optional. The TAGREGEXP pattern is anchored (as if preceded by ^).");
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
787 puts (" If TAGNAME/ is present, the tags created are named.\n\
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
788 For example Tcl named tags can be created with:\n\
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
789 --regex=\"/proc[ \\t]+\\([^ \\t]+\\)/\\1/.\".\n\
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
790 MODS are optional one-letter modifiers: `i' means to ignore case,\n\
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
791 `m' means to allow multi-line matches, `s' implies `m' and\n\
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
792 causes dot to match any character, including newline.");
10047
9b284d98b102 * etags.c (print_help): print --regex usage for ctags also.
Francesco Potortì <pot@gnu.org>
parents: 9976
diff changeset
793 puts ("-R, --no-regex\n\
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
794 Don't create tags from regexps for the following files.");
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
795 #endif /* ETAGS_REGEXPS */
10449
2266157d9bcc * etags.c (longopts, print_help, main): Use -I as abbreviation
Francesco Potortì <pot@gnu.org>
parents: 10404
diff changeset
796 puts ("-I, --ignore-indentation\n\
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
797 In C and C++ do not assume that a closing brace in the first\n\
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
798 column is the final brace of a function or structure definition.");
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
799 puts ("-o FILE, --output=FILE\n\
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
800 Write the tags to FILE.");
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
801 puts ("--parse-stdin=NAME\n\
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
802 Read from standard input and record tags as belonging to file NAME.");
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
803
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
804 if (CTAGS)
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
805 {
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
806 puts ("-t, --typedefs\n\
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
807 Generate tag entries for C and Ada typedefs.");
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
808 puts ("-T, --typedefs-and-c++\n\
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
809 Generate tag entries for C typedefs, C struct/enum/union tags,\n\
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
810 and C++ member functions.");
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
811 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
812
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
813 if (CTAGS)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
814 puts ("-u, --update\n\
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
815 Update the tag entries for the given files, leaving tag\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
816 entries for other files in place. Currently, this is\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
817 implemented by deleting the existing entries for the given\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
818 files and then rewriting the new entries at the end of the\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
819 tags file. It is often faster to simply rebuild the entire\n\
4126
9a906e5f9b28 * etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents: 4052
diff changeset
820 tag file than to use this.");
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
821
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
822 if (CTAGS)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
823 {
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
824 puts ("-v, --vgrind\n\
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
825 Generates an index of items intended for human consumption,\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
826 similar to the output of vgrind. The index is sorted, and\n\
4126
9a906e5f9b28 * etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents: 4052
diff changeset
827 gives the page number of each item.");
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
828 puts ("-w, --no-warn\n\
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
829 Suppress warning messages about entries defined in multiple\n\
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
830 files.");
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
831 puts ("-x, --cxref\n\
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
832 Like --vgrind, but in the style of cxref, rather than vgrind.\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
833 The output uses line numbers instead of page numbers, but\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
834 beyond that the differences are cosmetic; try both to see\n\
4126
9a906e5f9b28 * etags.c (print_help): Break up the very long strings containing
Jim Blandy <jimb@redhat.com>
parents: 4052
diff changeset
835 which you like.");
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
836 }
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
837
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
838 puts ("-V, --version\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
839 Print the version of the program.\n\
10047
9b284d98b102 * etags.c (print_help): print --regex usage for ctags also.
Francesco Potortì <pot@gnu.org>
parents: 9976
diff changeset
840 -h, --help\n\
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
841 Print this help message.");
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
842
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
843 print_language_names ();
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
844
16373
d50369f4bb41 * etags.c (print_version): Print copyright info.
Francesco Potortì <pot@gnu.org>
parents: 16086
diff changeset
845 puts ("");
26323
98d99afb5ffb * etags.c (print_help): Change email address to send bugs to.
Gerd Moellmann <gerd@gnu.org>
parents: 26262
diff changeset
846 puts ("Report bugs to bug-gnu-emacs@gnu.org");
16373
d50369f4bb41 * etags.c (print_version): Print copyright info.
Francesco Potortì <pot@gnu.org>
parents: 16086
diff changeset
847
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
848 exit (GOOD);
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
849 }
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
850
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
851
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
852 #ifdef VMS /* VMS specific functions */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
853
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
854 #define EOS '\0'
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
855
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
856 /* This is a BUG! ANY arbitrary limit is a BUG!
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
857 Won't someone please fix this? */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
858 #define MAX_FILE_SPEC_LEN 255
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
859 typedef struct {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
860 short curlen;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
861 char body[MAX_FILE_SPEC_LEN + 1];
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
862 } vspec;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
863
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
864 /*
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
865 v1.05 nmm 26-Jun-86 fn_exp - expand specification of list of file names
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
866 returning in each successive call the next file name matching the input
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
867 spec. The function expects that each in_spec passed
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
868 to it will be processed to completion; in particular, up to and
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
869 including the call following that in which the last matching name
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
870 is returned, the function ignores the value of in_spec, and will
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
871 only start processing a new spec with the following call.
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
872 If an error occurs, on return out_spec contains the value
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
873 of in_spec when the error occurred.
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
874
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
875 With each successive file name returned in out_spec, the
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
876 function's return value is one. When there are no more matching
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
877 names the function returns zero. If on the first call no file
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
878 matches in_spec, or there is any other error, -1 is returned.
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
879 */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
880
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
881 #include <rmsdef.h>
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
882 #include <descrip.h>
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
883 #define OUTSIZE MAX_FILE_SPEC_LEN
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
884 static short
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
885 fn_exp (out, in)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
886 vspec *out;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
887 char *in;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
888 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
889 static long context = 0;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
890 static struct dsc$descriptor_s o;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
891 static struct dsc$descriptor_s i;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
892 static bool pass1 = TRUE;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
893 long status;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
894 short retval;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
895
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
896 if (pass1)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
897 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
898 pass1 = FALSE;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
899 o.dsc$a_pointer = (char *) out;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
900 o.dsc$w_length = (short)OUTSIZE;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
901 i.dsc$a_pointer = in;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
902 i.dsc$w_length = (short)strlen(in);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
903 i.dsc$b_dtype = DSC$K_DTYPE_T;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
904 i.dsc$b_class = DSC$K_CLASS_S;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
905 o.dsc$b_dtype = DSC$K_DTYPE_VT;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
906 o.dsc$b_class = DSC$K_CLASS_VS;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
907 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
908 if ((status = lib$find_file(&i, &o, &context, 0, 0)) == RMS$_NORMAL)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
909 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
910 out->body[out->curlen] = EOS;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
911 return 1;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
912 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
913 else if (status == RMS$_NMF)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
914 retval = 0;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
915 else
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
916 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
917 strcpy(out->body, in);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
918 retval = -1;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
919 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
920 lib$find_file_end(&context);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
921 pass1 = TRUE;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
922 return retval;
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
923 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
924
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
925 /*
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
926 v1.01 nmm 19-Aug-85 gfnames - return in successive calls the
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
927 name of each file specified by the provided arg expanding wildcards.
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
928 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
929 static char *
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
930 gfnames (arg, p_error)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
931 char *arg;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
932 bool *p_error;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
933 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
934 static vspec filename = {MAX_FILE_SPEC_LEN, "\0"};
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
935
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
936 switch (fn_exp (&filename, arg))
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
937 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
938 case 1:
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
939 *p_error = FALSE;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
940 return filename.body;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
941 case 0:
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
942 *p_error = FALSE;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
943 return NULL;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
944 default:
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
945 *p_error = TRUE;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
946 return filename.body;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
947 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
948 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
949
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
950 #ifndef OLD /* Newer versions of VMS do provide `system'. */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
951 system (cmd)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
952 char *cmd;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
953 {
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
954 error ("%s", "system() function not implemented under VMS");
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
955 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
956 #endif
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
957
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
958 #define VERSION_DELIM ';'
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
959 char *massage_name (s)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
960 char *s;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
961 {
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
962 char *start = s;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
963
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
964 for ( ; *s; s++)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
965 if (*s == VERSION_DELIM)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
966 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
967 *s = EOS;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
968 break;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
969 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
970 else
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
971 *s = lowcase (*s);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
972 return start;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
973 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
974 #endif /* VMS */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
975
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
976
15683
5f9426e991a3 Declare main as int, not void.
Karl Heuer <kwzh@gnu.org>
parents: 15579
diff changeset
977 int
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
978 main (argc, argv)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
979 int argc;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
980 char *argv[];
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
981 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
982 int i;
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
983 unsigned int nincluded_files;
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
984 char **included_files;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
985 argument *argbuffer;
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
986 int current_arg, file_count;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
987 linebuffer filename_lb;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
988 #ifdef VMS
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
989 bool got_err;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
990 #endif
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
991 char *optstring;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
992 int opt;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
993
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
994
9773
bd49556a7552 (main, etags_getcwd): Test DOS_NT instead of MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 9635
diff changeset
995 #ifdef DOS_NT
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
996 _fmode = O_BINARY; /* all of files are treated as binary files */
9773
bd49556a7552 (main, etags_getcwd): Test DOS_NT instead of MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 9635
diff changeset
997 #endif /* DOS_NT */
5448
18de002e47dd (main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents: 5044
diff changeset
998
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
999 progname = argv[0];
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
1000 nincluded_files = 0;
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
1001 included_files = xnew (argc, char *);
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
1002 current_arg = 0;
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
1003 file_count = 0;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1004
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1005 /* Allocate enough no matter what happens. Overkill, but each one
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1006 is small. */
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1007 argbuffer = xnew (argc, argument);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1008
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1009 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1010 * If etags, always find typedefs and structure tags. Why not?
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
1011 * Also default to find macro constants, enum constants and
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1012 * global variables.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1013 */
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
1014 if (!CTAGS)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1015 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
1016 typedefs = typedefs_or_cplusplus = constantypedefs = TRUE;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1017 globals = TRUE;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1018 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1019
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1020 optstring = "-";
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1021 #ifdef ETAGS_REGEXPS
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1022 optstring = "-r:Rc:";
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1023 #endif /* ETAGS_REGEXPS */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1024 #ifndef LONG_OPTIONS
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1025 optstring = optstring + 1;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1026 #endif /* LONG_OPTIONS */
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1027 optstring = concat (optstring,
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1028 "Cf:Il:o:SVhH",
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1029 (CTAGS) ? "BxdtTuvw" : "aDi:");
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1030
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1031 while ((opt = getopt_long (argc, argv, optstring, longopts, 0)) != EOF)
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1032 switch (opt)
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1033 {
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1034 case 0:
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1035 /* If getopt returns 0, then it has already processed a
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1036 long-named option. We should do nothing. */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1037 break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1038
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1039 case 1:
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1040 /* This means that a file name has been seen. Record it. */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1041 argbuffer[current_arg].arg_type = at_filename;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1042 argbuffer[current_arg].what = optarg;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1043 ++current_arg;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1044 ++file_count;
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1045 break;
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1046
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1047 case STDIN:
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1048 /* Parse standard input. Idea by Vivek <vivek@etla.org>. */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1049 argbuffer[current_arg].arg_type = at_stdin;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1050 argbuffer[current_arg].what = optarg;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1051 ++current_arg;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1052 ++file_count;
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
1053 if (parsing_stdin)
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
1054 fatal ("cannot parse standard input more than once", (char *)NULL);
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1055 parsing_stdin = TRUE;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1056 break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1057
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1058 /* Common options. */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1059 case 'C': cplusplus = TRUE; break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1060 case 'f': /* for compatibility with old makefiles */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1061 case 'o':
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1062 if (tagfile)
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1063 {
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1064 error ("-o option may only be given once.", (char *)NULL);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1065 suggest_asking_for_help ();
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1066 }
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1067 tagfile = optarg;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1068 break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1069 case 'I':
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1070 case 'S': /* for backward compatibility */
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
1071 ignoreindent = TRUE;
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1072 break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1073 case 'l':
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1074 {
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1075 language *lang = get_language_from_langname (optarg);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1076 if (lang != NULL)
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1077 {
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1078 argbuffer[current_arg].lang = lang;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1079 argbuffer[current_arg].arg_type = at_language;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1080 ++current_arg;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1081 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1082 }
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1083 break;
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1084 case 'c':
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1085 /* Backward compatibility: support obsolete --ignore-case-regexp. */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1086 optarg = concat (optarg, "i", ""); /* memory leak here */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1087 /* FALLTHRU */
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1088 case 'r':
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1089 argbuffer[current_arg].arg_type = at_regexp;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1090 argbuffer[current_arg].what = optarg;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1091 ++current_arg;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1092 break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1093 case 'R':
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1094 argbuffer[current_arg].arg_type = at_regexp;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1095 argbuffer[current_arg].what = NULL;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1096 ++current_arg;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1097 break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1098 case 'V':
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1099 print_version ();
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1100 break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1101 case 'h':
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1102 case 'H':
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1103 print_help ();
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1104 break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1105
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1106 /* Etags options */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1107 case 'a': append_to_tagfile = TRUE; break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1108 case 'D': constantypedefs = FALSE; break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1109 case 'i': included_files[nincluded_files++] = optarg; break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1110
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1111 /* Ctags options. */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1112 case 'B': searchar = '?'; break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1113 case 'd': constantypedefs = TRUE; break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1114 case 't': typedefs = TRUE; break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1115 case 'T': typedefs = typedefs_or_cplusplus = TRUE; break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1116 case 'u': update = TRUE; break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1117 case 'v': vgrind_style = TRUE; /*FALLTHRU*/
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1118 case 'x': cxref_style = TRUE; break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1119 case 'w': no_warnings = TRUE; break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1120 default:
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1121 suggest_asking_for_help ();
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1122 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1123
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1124 for (; optind < argc; ++optind)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1125 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1126 argbuffer[current_arg].arg_type = at_filename;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1127 argbuffer[current_arg].what = argv[optind];
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1128 ++current_arg;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1129 ++file_count;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1130 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1131
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1132 if (nincluded_files == 0 && file_count == 0)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1133 {
26507
aabdfbf65c68 1999-11-19 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26340
diff changeset
1134 error ("no input files specified.", (char *)NULL);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1135 suggest_asking_for_help ();
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1136 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1137
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1138 if (tagfile == NULL)
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
1139 tagfile = CTAGS ? "tags" : "TAGS";
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
1140 cwd = etags_getcwd (); /* the current working directory */
15366
32ab7b623b9b (main): Copy cwd when appending slash.
Richard M. Stallman <rms@gnu.org>
parents: 15243
diff changeset
1141 if (cwd[strlen (cwd) - 1] != '/')
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
1142 {
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
1143 char *oldcwd = cwd;
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
1144 cwd = concat (oldcwd, "/", "");
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
1145 free (oldcwd);
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
1146 }
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1147 if (streq (tagfile, "-"))
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
1148 tagfiledir = cwd;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
1149 else
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
1150 tagfiledir = absolute_dirname (tagfile, cwd);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1151
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1152 init (); /* set up boolean "functions" */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1153
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1154 linebuffer_init (&lb);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1155 linebuffer_init (&filename_lb);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1156 linebuffer_init (&filebuf);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1157 linebuffer_init (&token_name);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1158
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
1159 if (!CTAGS)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1160 {
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1161 if (streq (tagfile, "-"))
14920
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1162 {
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1163 tagf = stdout;
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1164 #ifdef DOS_NT
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1165 /* Switch redirected `stdout' to binary mode (setting `_fmode'
15243
c024dca549c5 * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
Francesco Potortì <pot@gnu.org>
parents: 14982
diff changeset
1166 doesn't take effect until after `stdout' is already open). */
14920
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1167 if (!isatty (fileno (stdout)))
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1168 setmode (fileno (stdout), O_BINARY);
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1169 #endif /* DOS_NT */
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1170 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1171 else
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1172 tagf = fopen (tagfile, append_to_tagfile ? "a" : "w");
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1173 if (tagf == NULL)
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
1174 pfatal (tagfile);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1175 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1176
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1177 /*
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1178 * Loop through files finding functions.
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1179 */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1180 for (i = 0; i < current_arg; ++i)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1181 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1182 static language *lang; /* non-NULL if language is forced */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1183 char *this_file;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1184
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1185 switch (argbuffer[i].arg_type)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1186 {
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1187 case at_language:
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1188 lang = argbuffer[i].lang;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1189 break;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1190 #ifdef ETAGS_REGEXPS
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1191 case at_regexp:
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1192 analyse_regex (argbuffer[i].what);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1193 break;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1194 #endif
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1195 case at_filename:
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1196 #ifdef VMS
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1197 while ((this_file = gfnames (argbuffer[i].what, &got_err)) != NULL)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1198 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1199 if (got_err)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1200 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1201 error ("can't find file %s\n", this_file);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1202 argc--, argv++;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1203 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1204 else
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1205 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1206 this_file = massage_name (this_file);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1207 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1208 #else
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1209 this_file = argbuffer[i].what;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1210 #endif
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1211 /* Input file named "-" means read file names from stdin
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1212 (one per line) and use them. */
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1213 if (streq (this_file, "-"))
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1214 {
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1215 if (parsing_stdin)
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1216 fatal ("cannot parse standard input AND read file names from it",
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1217 (char *)NULL);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1218 while (readline_internal (&filename_lb, stdin) > 0)
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1219 process_file_name (filename_lb.buffer, lang);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1220 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1221 else
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1222 process_file_name (this_file, lang);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1223 #ifdef VMS
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1224 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1225 #endif
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1226 break;
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1227 case at_stdin:
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1228 this_file = argbuffer[i].what;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1229 process_file (stdin, this_file, lang);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1230 break;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1231 }
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
1232 }
10761
7aa80669e697 * etags.c (C_entries): Bug corrected in xrealloc of token_str.
Francesco Potortì <pot@gnu.org>
parents: 10754
diff changeset
1233
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1234 #ifdef ETAGS_REGEXPS
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1235 free_regexps ();
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1236 #endif /* ETAGS_REGEXPS */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1237 free (lb.buffer);
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1238 free (filebuf.buffer);
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1239 free (token_name.buffer);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1240
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1241 if (!CTAGS || cxref_style)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1242 {
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
1243 put_entries (nodehead); /* write the remainig tags (ETAGS) */
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1244 free_tree (nodehead);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1245 nodehead = NULL;
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1246 if (!CTAGS)
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1247 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1248 fdesc *fdp;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1249
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1250 /* Output file entries that have no tags. */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1251 for (fdp = fdhead; fdp != NULL; fdp = fdp->next)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1252 if (!fdp->written)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1253 fprintf (tagf, "\f\n%s,0\n", fdp->taggedfname);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1254
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1255 while (nincluded_files-- > 0)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1256 fprintf (tagf, "\f\n%s,include\n", *included_files++);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1257 }
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1258
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1259 if (fclose (tagf) == EOF)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1260 pfatal (tagfile);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1261 exit (GOOD);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1262 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1263
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1264 if (update)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1265 {
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1266 char cmd[BUFSIZ];
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1267 for (i = 0; i < current_arg; ++i)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1268 {
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1269 switch (argbuffer[i].arg_type)
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1270 {
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1271 case at_filename:
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1272 case at_stdin:
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1273 break;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1274 default:
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1275 continue; /* the for loop */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1276 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1277 sprintf (cmd,
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1278 "mv %s OTAGS;fgrep -v '\t%s\t' OTAGS >%s;rm OTAGS",
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1279 tagfile, argbuffer[i].what, tagfile);
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1280 if (system (cmd) != GOOD)
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
1281 fatal ("failed to execute shell command", (char *)NULL);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1282 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1283 append_to_tagfile = TRUE;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1284 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1285
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1286 tagf = fopen (tagfile, append_to_tagfile ? "a" : "w");
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1287 if (tagf == NULL)
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1288 pfatal (tagfile);
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
1289 put_entries (nodehead); /* write all the tags (CTAGS) */
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1290 free_tree (nodehead);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1291 nodehead = NULL;
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1292 if (fclose (tagf) == EOF)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1293 pfatal (tagfile);
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1294
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1295 if (update)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1296 {
45643
5cee84ffef53 (main): Avoid a buffer overrun with sprintf.
Francesco Potortì <pot@gnu.org>
parents: 45535
diff changeset
1297 char cmd[2*BUFSIZ+10];
5cee84ffef53 (main): Avoid a buffer overrun with sprintf.
Francesco Potortì <pot@gnu.org>
parents: 45535
diff changeset
1298 sprintf (cmd, "sort -o %.*s %.*s", BUFSIZ, tagfile, BUFSIZ, tagfile);
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1299 exit (system (cmd));
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1300 }
16373
d50369f4bb41 * etags.c (print_version): Print copyright info.
Francesco Potortì <pot@gnu.org>
parents: 16086
diff changeset
1301 return GOOD;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1302 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1303
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1304
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1305 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1306 * Return a compressor given the file name. If EXTPTR is non-zero,
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1307 * return a pointer into FILE where the compressor-specific
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1308 * extension begins. If no compressor is found, NULL is returned
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1309 * and EXTPTR is not significant.
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
1310 * Idea by Vladimir Alexiev <vladimir@cs.ualberta.ca> (1998)
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1311 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1312 static compressor *
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1313 get_compressor_from_suffix (file, extptr)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1314 char *file;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1315 char **extptr;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1316 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1317 compressor *compr;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1318 char *slash, *suffix;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1319
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1320 /* This relies on FN to be after canonicalize_filename,
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1321 so we don't need to consider backslashes on DOS_NT. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1322 slash = etags_strrchr (file, '/');
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1323 suffix = etags_strrchr (file, '.');
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1324 if (suffix == NULL || suffix < slash)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1325 return NULL;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1326 if (extptr != NULL)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1327 *extptr = suffix;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1328 suffix += 1;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1329 /* Let those poor souls who live with DOS 8+3 file name limits get
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1330 some solace by treating foo.cgz as if it were foo.c.gz, etc.
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1331 Only the first do loop is run if not MSDOS */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1332 do
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1333 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1334 for (compr = compressors; compr->suffix != NULL; compr++)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1335 if (streq (compr->suffix, suffix))
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1336 return compr;
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1337 if (!MSDOS)
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1338 break; /* do it only once: not really a loop */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1339 if (extptr != NULL)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1340 *extptr = ++suffix;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1341 } while (*suffix != '\0');
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1342 return NULL;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1343 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1344
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1345
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1346
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1347 /*
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1348 * Return a language given the name.
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1349 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1350 static language *
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1351 get_language_from_langname (name)
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
1352 const char *name;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1353 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1354 language *lang;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1355
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1356 if (name == NULL)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1357 error ("empty language name", (char *)NULL);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1358 else
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1359 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1360 for (lang = lang_names; lang->name != NULL; lang++)
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1361 if (streq (name, lang->name))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1362 return lang;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1363 error ("unknown language \"%s\"", name);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1364 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1365
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1366 return NULL;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1367 }
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1368
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1369
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1370 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1371 * Return a language given the interpreter name.
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1372 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1373 static language *
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1374 get_language_from_interpreter (interpreter)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1375 char *interpreter;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1376 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1377 language *lang;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1378 char **iname;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1379
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1380 if (interpreter == NULL)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1381 return NULL;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1382 for (lang = lang_names; lang->name != NULL; lang++)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1383 if (lang->interpreters != NULL)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1384 for (iname = lang->interpreters; *iname != NULL; iname++)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1385 if (streq (*iname, interpreter))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1386 return lang;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1387
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1388 return NULL;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1389 }
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1390
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1391
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1392
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1393 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1394 * Return a language given the file name.
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1395 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1396 static language *
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1397 get_language_from_filename (file, case_sensitive)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1398 char *file;
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1399 bool case_sensitive;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1400 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1401 language *lang;
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1402 char **name, **ext, *suffix;
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1403
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1404 /* Try whole file name first. */
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1405 for (lang = lang_names; lang->name != NULL; lang++)
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1406 if (lang->filenames != NULL)
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1407 for (name = lang->filenames; *name != NULL; name++)
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1408 if ((case_sensitive)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1409 ? streq (*name, file)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1410 : strcaseeq (*name, file))
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1411 return lang;
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1412
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1413 /* If not found, try suffix after last dot. */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1414 suffix = etags_strrchr (file, '.');
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1415 if (suffix == NULL)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1416 return NULL;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1417 suffix += 1;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1418 for (lang = lang_names; lang->name != NULL; lang++)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1419 if (lang->suffixes != NULL)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1420 for (ext = lang->suffixes; *ext != NULL; ext++)
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1421 if ((case_sensitive)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1422 ? streq (*ext, suffix)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1423 : strcaseeq (*ext, suffix))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1424 return lang;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1425 return NULL;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1426 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1427
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1428
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1429 /*
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1430 * This routine is called on each file argument.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1431 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1432 static void
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1433 process_file_name (file, lang)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1434 char *file;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1435 language *lang;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1436 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1437 struct stat stat_buf;
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1438 FILE *inf;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1439 fdesc *fdp;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1440 compressor *compr;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1441 char *compressed_name, *uncompressed_name;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1442 char *ext, *real_name;
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1443 int retval;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1444
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1445 canonicalize_filename (file);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1446 if (streq (file, tagfile) && !streq (tagfile, "-"))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1447 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1448 error ("skipping inclusion of %s in self.", file);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1449 return;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1450 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1451 if ((compr = get_compressor_from_suffix (file, &ext)) == NULL)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1452 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1453 compressed_name = NULL;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1454 real_name = uncompressed_name = savestr (file);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1455 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1456 else
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1457 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1458 real_name = compressed_name = savestr (file);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1459 uncompressed_name = savenstr (file, ext - file);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1460 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1461
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1462 /* If the canonicalized uncompressed name
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1463 has already been dealt with, skip it silently. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1464 for (fdp = fdhead; fdp != NULL; fdp = fdp->next)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1465 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1466 assert (fdp->infname != NULL);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1467 if (streq (uncompressed_name, fdp->infname))
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1468 goto cleanup;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1469 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1470
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1471 if (stat (real_name, &stat_buf) != 0)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1472 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1473 /* Reset real_name and try with a different name. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1474 real_name = NULL;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1475 if (compressed_name != NULL) /* try with the given suffix */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1476 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1477 if (stat (uncompressed_name, &stat_buf) == 0)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1478 real_name = uncompressed_name;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1479 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1480 else /* try all possible suffixes */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1481 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1482 for (compr = compressors; compr->suffix != NULL; compr++)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1483 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1484 compressed_name = concat (file, ".", compr->suffix);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1485 if (stat (compressed_name, &stat_buf) != 0)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1486 {
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1487 if (MSDOS)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1488 {
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1489 char *suf = compressed_name + strlen (file);
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1490 size_t suflen = strlen (compr->suffix) + 1;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1491 for ( ; suf[1]; suf++, suflen--)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1492 {
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1493 memmove (suf, suf + 1, suflen);
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1494 if (stat (compressed_name, &stat_buf) == 0)
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1495 {
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1496 real_name = compressed_name;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1497 break;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1498 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1499 }
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1500 if (real_name != NULL)
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1501 break;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1502 } /* MSDOS */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1503 free (compressed_name);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1504 compressed_name = NULL;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1505 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1506 else
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1507 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1508 real_name = compressed_name;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1509 break;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1510 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1511 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1512 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1513 if (real_name == NULL)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1514 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1515 perror (file);
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1516 goto cleanup;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1517 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1518 } /* try with a different name */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1519
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1520 if (!S_ISREG (stat_buf.st_mode))
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1521 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1522 error ("skipping %s: it is not a regular file.", real_name);
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1523 goto cleanup;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1524 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1525 if (real_name == compressed_name)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1526 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1527 char *cmd = concat (compr->command, " ", real_name);
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
1528 inf = (FILE *) popen (cmd, "r");
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1529 free (cmd);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1530 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1531 else
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1532 inf = fopen (real_name, "r");
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1533 if (inf == NULL)
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
1534 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1535 perror (real_name);
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1536 goto cleanup;
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
1537 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1538
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1539 process_file (inf, uncompressed_name, lang);
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1540
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1541 if (real_name == compressed_name)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1542 retval = pclose (inf);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1543 else
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1544 retval = fclose (inf);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1545 if (retval < 0)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1546 pfatal (file);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1547
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1548 cleanup:
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1549 if (compressed_name) free (compressed_name);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1550 if (uncompressed_name) free (uncompressed_name);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1551 last_node = NULL;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1552 curfdp = NULL;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1553 return;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1554 }
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1555
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1556 static void
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1557 process_file (fh, fn, lang)
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1558 FILE *fh;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1559 char *fn;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1560 language *lang;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1561 {
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1562 static const fdesc emptyfdesc;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1563 fdesc *fdp;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1564
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1565 /* Create a new input file description entry. */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1566 fdp = xnew (1, fdesc);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1567 *fdp = emptyfdesc;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1568 fdp->next = fdhead;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1569 fdp->infname = savestr (fn);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1570 fdp->lang = lang;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1571 fdp->infabsname = absolute_filename (fn, cwd);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1572 fdp->infabsdir = absolute_dirname (fn, cwd);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1573 if (filename_is_absolute (fn))
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1574 {
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1575 /* An absolute file name. Canonicalize it. */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1576 fdp->taggedfname = absolute_filename (fn, NULL);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1577 }
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1578 else
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1579 {
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1580 /* A file name relative to cwd. Make it relative
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1581 to the directory of the tags file. */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1582 fdp->taggedfname = relative_filename (fn, tagfiledir);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1583 }
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1584 fdp->usecharno = TRUE; /* use char position when making tags */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1585 fdp->prop = NULL;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1586 fdp->written = FALSE; /* not written on tags file yet */
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1587
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1588 fdhead = fdp;
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1589 curfdp = fdhead; /* the current file description */
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1590
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1591 find_entries (fh);
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
1592
44614
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1593 /* If not Ctags, and if this is not metasource and if it contained no #line
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1594 directives, we can write the tags and free all nodes pointing to
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1595 curfdp. */
44614
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1596 if (!CTAGS
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1597 && curfdp->usecharno /* no #line directives in this file */
44614
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1598 && !curfdp->lang->metasource)
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1599 {
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1600 node *np, *prev;
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1601
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1602 /* Look for the head of the sublist relative to this file. See add_node
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1603 for the structure of the node tree. */
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1604 prev = NULL;
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1605 for (np = nodehead; np != NULL; prev = np, np = np->left)
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1606 if (np->fdp == curfdp)
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1607 break;
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1608
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1609 /* If we generated tags for this file, write and delete them. */
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1610 if (np != NULL)
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1611 {
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1612 /* This is the head of the last sublist, if any. The following
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1613 instructions depend on this being true. */
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1614 assert (np->left == NULL);
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1615
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1616 assert (fdhead == curfdp);
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1617 assert (last_node->fdp == curfdp);
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1618 put_entries (np); /* write tags for file curfdp->taggedfname */
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1619 free_tree (np); /* remove the written nodes */
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1620 if (prev == NULL)
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1621 nodehead = NULL; /* no nodes left */
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1622 else
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1623 prev->left = NULL; /* delete the pointer to the sublist */
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1624 }
44614
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1625 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1626 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1627
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1628 /*
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3569
diff changeset
1629 * This routine sets up the boolean pseudo-functions which work
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1630 * by setting boolean flags dependent upon the corresponding character.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1631 * Every char which is NOT in that string is not a white char. Therefore,
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1632 * all of the array "_wht" is set to FALSE, and then the elements
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1633 * subscripted by the chars in "white" are set to TRUE. Thus "_wht"
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1634 * of a char is TRUE if it is the string "white", else FALSE.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1635 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1636 static void
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1637 init ()
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1638 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
1639 register char *sp;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
1640 register int i;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1641
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1642 for (i = 0; i < CHARS; i++)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1643 iswhite(i) = notinname(i) = begtoken(i) = intoken(i) = endtoken(i) = FALSE;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1644 for (sp = white; *sp != '\0'; sp++) iswhite (*sp) = TRUE;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1645 for (sp = nonam; *sp != '\0'; sp++) notinname (*sp) = TRUE;
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
1646 notinname('\0') = notinname('\n');
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1647 for (sp = begtk; *sp != '\0'; sp++) begtoken (*sp) = TRUE;
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
1648 begtoken('\0') = begtoken('\n');
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1649 for (sp = midtk; *sp != '\0'; sp++) intoken (*sp) = TRUE;
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
1650 intoken('\0') = intoken('\n');
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1651 for (sp = endtk; *sp != '\0'; sp++) endtoken (*sp) = TRUE;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1652 endtoken('\0') = endtoken('\n');
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1653 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1654
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1655 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1656 * This routine opens the specified file and calls the function
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1657 * which finds the function and type definitions.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1658 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1659 static void
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1660 find_entries (inf)
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1661 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1662 {
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1663 char *cp;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1664 language *lang = curfdp->lang;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1665 Lang_function *parser = NULL;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1666
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1667 /* If user specified a language, use it. */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1668 if (lang != NULL && lang->function != NULL)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1669 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1670 parser = lang->function;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1671 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1672
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1673 /* Else try to guess the language given the file name. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1674 if (parser == NULL)
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1675 {
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1676 lang = get_language_from_filename (curfdp->infname, TRUE);
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1677 if (lang != NULL && lang->function != NULL)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1678 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1679 curfdp->lang = lang;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1680 parser = lang->function;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1681 }
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1682 }
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1683
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1684 /* Else look for sharp-bang as the first two characters. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1685 if (parser == NULL
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1686 && readline_internal (&lb, inf) > 0
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
1687 && lb.len >= 2
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1688 && lb.buffer[0] == '#'
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1689 && lb.buffer[1] == '!')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1690 {
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1691 char *lp;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1692
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1693 /* Set lp to point at the first char after the last slash in the
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1694 line or, if no slashes, at the first nonblank. Then set cp to
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1695 the first successive blank and terminate the string. */
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1696 lp = etags_strrchr (lb.buffer+2, '/');
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1697 if (lp != NULL)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1698 lp += 1;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1699 else
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1700 lp = skip_spaces (lb.buffer + 2);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1701 cp = skip_non_spaces (lp);
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1702 *cp = '\0';
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1703
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1704 if (strlen (lp) > 0)
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1705 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1706 lang = get_language_from_interpreter (lp);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1707 if (lang != NULL && lang->function != NULL)
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1708 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1709 curfdp->lang = lang;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1710 parser = lang->function;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1711 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1712 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1713 }
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1714
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1715 /* We rewind here, even if inf may be a pipe. We fail if the
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1716 length of the first line is longer than the pipe block size,
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1717 which is unlikely. */
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1718 rewind (inf);
44607
8f3420af28a8 * etags.c (get_language_from_filename): Add one argument.
Francesco Potortì <pot@gnu.org>
parents: 44605
diff changeset
1719
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1720 /* Else try to guess the language given the case insensitive file name. */
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1721 if (parser == NULL)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1722 {
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1723 lang = get_language_from_filename (curfdp->infname, FALSE);
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1724 if (lang != NULL && lang->function != NULL)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1725 {
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1726 curfdp->lang = lang;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1727 parser = lang->function;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1728 }
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1729 }
44607
8f3420af28a8 * etags.c (get_language_from_filename): Add one argument.
Francesco Potortì <pot@gnu.org>
parents: 44605
diff changeset
1730
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1731 /* Else try Fortran or C. */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1732 if (parser == NULL)
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1733 {
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1734 node *old_last_node = last_node;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1735
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1736 curfdp->lang = get_language_from_langname ("fortran");
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1737 find_entries (inf);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1738
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1739 if (old_last_node == last_node)
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1740 /* No Fortran entries found. Try C. */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1741 {
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1742 /* We do not tag if rewind fails.
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1743 Only the file name will be recorded in the tags file. */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1744 rewind (inf);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1745 curfdp->lang = get_language_from_langname (cplusplus ? "c++" : "c");
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1746 find_entries (inf);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1747 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1748 return;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1749 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1750
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1751 if (!no_line_directive
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1752 && curfdp->lang != NULL && curfdp->lang->metasource)
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1753 /* It may be that this is a bingo.y file, and we already parsed a bingo.c
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1754 file, or anyway we parsed a file that is automatically generated from
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1755 this one. If this is the case, the bingo.c file contained #line
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1756 directives that generated tags pointing to this file. Let's delete
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1757 them all before parsing this file, which is the real source. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1758 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1759 fdesc **fdpp = &fdhead;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1760 while (*fdpp != NULL)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1761 if (*fdpp != curfdp
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1762 && streq ((*fdpp)->taggedfname, curfdp->taggedfname))
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1763 /* We found one of those! We must delete both the file description
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1764 and all tags referring to it. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1765 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1766 fdesc *badfdp = *fdpp;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1767
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
1768 /* Delete the tags referring to badfdp->taggedfname
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
1769 that were obtained from badfdp->infname. */
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1770 invalidate_nodes (badfdp, &nodehead);
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1771
44614
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1772 *fdpp = badfdp->next; /* remove the bad description from the list */
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1773 free_fdesc (badfdp);
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1774 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1775 else
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1776 fdpp = &(*fdpp)->next; /* advance the list pointer */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1777 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1778
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1779 assert (parser != NULL);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1780
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1781 /* Generic initialisations before reading from file. */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1782 linebuffer_setlen (&filebuf, 0); /* reset the file buffer */
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1783
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1784 /* Generic initialisations before parsing file with readline. */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1785 lineno = 0; /* reset global line number */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1786 charno = 0; /* reset global char number */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1787 linecharno = 0; /* reset global char number of line start */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1788
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1789 parser (inf);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1790
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1791 #ifdef ETAGS_REGEXPS
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1792 regex_tag_multiline ();
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
1793 #endif /* ETAGS_REGEXPS */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1794 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
1795
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1796
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1797 /*
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1798 * Check whether an implicitly named tag should be created,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1799 * then call `pfnote'.
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1800 * NAME is a string that is internally copied by this function.
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1801 *
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1802 * TAGS format specification
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1803 * Idea by Sam Kendall <kendall@mv.mv.com> (1997)
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1804 * The following is explained in some more detail in etc/ETAGS.EBNF.
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1805 *
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1806 * make_tag creates tags with "implicit tag names" (unnamed tags)
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1807 * if the following are all true, assuming NONAM=" \f\t\n\r()=,;":
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1808 * 1. NAME does not contain any of the characters in NONAM;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1809 * 2. LINESTART contains name as either a rightmost, or rightmost but
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1810 * one character, substring;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1811 * 3. the character, if any, immediately before NAME in LINESTART must
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1812 * be a character in NONAM;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1813 * 4. the character, if any, immediately after NAME in LINESTART must
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1814 * also be a character in NONAM.
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1815 *
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1816 * The implementation uses the notinname() macro, which recognises the
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1817 * characters stored in the string `nonam'.
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1818 * etags.el needs to use the same characters that are in NONAM.
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1819 */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1820 static void
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1821 make_tag (name, namelen, is_func, linestart, linelen, lno, cno)
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1822 char *name; /* tag name, or NULL if unnamed */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1823 int namelen; /* tag length */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1824 bool is_func; /* tag is a function */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1825 char *linestart; /* start of the line where tag is */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1826 int linelen; /* length of the line where tag is */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1827 int lno; /* line number */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1828 long cno; /* character number */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1829 {
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1830 bool named = (name != NULL && namelen > 0);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1831
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1832 if (!CTAGS && named) /* maybe set named to false */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1833 /* Let's try to make an implicit tag name, that is, create an unnamed tag
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1834 such that etags.el can guess a name from it. */
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1835 {
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1836 int i;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1837 register char *cp = name;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1838
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1839 for (i = 0; i < namelen; i++)
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1840 if (notinname (*cp++))
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1841 break;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1842 if (i == namelen) /* rule #1 */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1843 {
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1844 cp = linestart + linelen - namelen;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1845 if (notinname (linestart[linelen-1]))
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1846 cp -= 1; /* rule #4 */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1847 if (cp >= linestart /* rule #2 */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1848 && (cp == linestart
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1849 || notinname (cp[-1])) /* rule #3 */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1850 && strneq (name, cp, namelen)) /* rule #2 */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1851 named = FALSE; /* use implicit tag name */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1852 }
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1853 }
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1854
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1855 if (named)
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1856 name = savenstr (name, namelen);
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1857 else
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1858 name = NULL;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1859 pfnote (name, is_func, linestart, linelen, lno, cno);
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1860 }
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
1861
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1862 /* Record a tag. */
27658
5980f19581dc (pfnote, new_pfnote, C_entries, prolog_pred, erlang_func): Add
Dave Love <fx@gnu.org>
parents: 27595
diff changeset
1863 static void
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
1864 pfnote (name, is_func, linestart, linelen, lno, cno)
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1865 char *name; /* tag name, or NULL if unnamed */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1866 bool is_func; /* tag is a function */
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1867 char *linestart; /* start of the line where tag is */
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1868 int linelen; /* length of the line where tag is */
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1869 int lno; /* line number */
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1870 long cno; /* character number */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1871 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1872 register node *np;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1873
47218
66c5d66d21f6 (regex_tag_multiline, readline): Never pass pfnote a
Francesco Potortì <pot@gnu.org>
parents: 47157
diff changeset
1874 assert (name == NULL || name[0] != '\0');
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1875 if (CTAGS && name == NULL)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1876 return;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1877
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1878 np = xnew (1, node);
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1879
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1880 /* If ctags mode, change name "main" to M<thisfilename>. */
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
1881 if (CTAGS && !cxref_style && streq (name, "main"))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1882 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1883 register char *fp = etags_strrchr (curfdp->taggedfname, '/');
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1884 np->name = concat ("M", fp == NULL ? curfdp->taggedfname : fp + 1, "");
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1885 fp = etags_strrchr (np->name, '.');
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1886 if (fp != NULL && fp[1] != '\0' && fp[2] == '\0')
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1887 fp[0] = '\0';
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1888 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1889 else
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
1890 np->name = name;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1891 np->valid = TRUE;
10623
8a73e71a55e3 * etags.c (pfnote): Initialise been_warned in the node.
Francesco Potortì <pot@gnu.org>
parents: 10449
diff changeset
1892 np->been_warned = FALSE;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1893 np->fdp = curfdp;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1894 np->is_func = is_func;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1895 np->lno = lno;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1896 if (np->fdp->usecharno)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1897 /* Our char numbers are 0-base, because of C language tradition?
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1898 ctags compatibility? old versions compatibility? I don't know.
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1899 Anyway, since emacs's are 1-base we expect etags.el to take care
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1900 of the difference. If we wanted to have 1-based numbers, we would
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1901 uncomment the +1 below. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1902 np->cno = cno /* + 1 */ ;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1903 else
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1904 np->cno = invalidcharno;
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1905 np->left = np->right = NULL;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1906 if (CTAGS && !cxref_style)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1907 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1908 if (strlen (linestart) < 50)
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1909 np->regex = concat (linestart, "$", "");
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1910 else
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1911 np->regex = savenstr (linestart, 50);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1912 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1913 else
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1914 np->regex = savenstr (linestart, linelen);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1915
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1916 add_node (np, &nodehead);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1917 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1918
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
1919 /*
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1920 * free_tree ()
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1921 * recurse on left children, iterate on right children.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1922 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1923 static void
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1924 free_tree (np)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1925 register node *np;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1926 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1927 while (np)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1928 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1929 register node *node_right = np->right;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1930 free_tree (np->left);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1931 if (np->name != NULL)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1932 free (np->name);
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
1933 free (np->regex);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1934 free (np);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1935 np = node_right;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1936 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1937 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1938
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1939 /*
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1940 * free_fdesc ()
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1941 * delete a file description
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1942 */
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1943 static void
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1944 free_fdesc (fdp)
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1945 register fdesc *fdp;
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1946 {
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1947 if (fdp->infname != NULL) free (fdp->infname);
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1948 if (fdp->infabsname != NULL) free (fdp->infabsname);
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1949 if (fdp->infabsdir != NULL) free (fdp->infabsdir);
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1950 if (fdp->taggedfname != NULL) free (fdp->taggedfname);
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1951 if (fdp->prop != NULL) free (fdp->prop);
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1952 free (fdp);
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1953 }
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1954
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1955 /*
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1956 * add_node ()
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1957 * Adds a node to the tree of nodes. In etags mode, sort by file
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1958 * name. In ctags mode, sort by tag name. Make no attempt at
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1959 * balancing.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1960 *
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1961 * add_node is the only function allowed to add nodes, so it can
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1962 * maintain state.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1963 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1964 static void
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1965 add_node (np, cur_node_p)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1966 node *np, **cur_node_p;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1967 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1968 register int dif;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1969 register node *cur_node = *cur_node_p;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1970
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1971 if (cur_node == NULL)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1972 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1973 *cur_node_p = np;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1974 last_node = np;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1975 return;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1976 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1977
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
1978 if (!CTAGS)
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1979 /* Etags Mode */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1980 {
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1981 /* For each file name, tags are in a linked sublist on the right
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1982 pointer. The first tags of different files are a linked list
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1983 on the left pointer. last_node points to the end of the last
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1984 used sublist. */
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1985 if (last_node != NULL && last_node->fdp == np->fdp)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1986 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1987 /* Let's use the same sublist as the last added node. */
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
1988 assert (last_node->right == NULL);
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1989 last_node->right = np;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1990 last_node = np;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1991 }
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1992 else if (cur_node->fdp == np->fdp)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1993 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1994 /* Scanning the list we found the head of a sublist which is
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1995 good for us. Let's scan this sublist. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1996 add_node (np, &cur_node->right);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1997 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1998 else
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1999 /* The head of this sublist is not good for us. Let's try the
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2000 next one. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2001 add_node (np, &cur_node->left);
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2002 } /* if ETAGS mode */
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2003
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2004 else
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2005 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2006 /* Ctags Mode */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2007 dif = strcmp (np->name, cur_node->name);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2008
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2009 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2010 * If this tag name matches an existing one, then
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2011 * do not add the node, but maybe print a warning.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2012 */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2013 if (!dif)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2014 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2015 if (np->fdp == cur_node->fdp)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2016 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2017 if (!no_warnings)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2018 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2019 fprintf (stderr, "Duplicate entry in file %s, line %d: %s\n",
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2020 np->fdp->infname, lineno, np->name);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2021 fprintf (stderr, "Second entry ignored\n");
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2022 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2023 }
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
2024 else if (!cur_node->been_warned && !no_warnings)
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
2025 {
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
2026 fprintf
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
2027 (stderr,
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
2028 "Duplicate entry in files %s and %s: %s (Warning only)\n",
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2029 np->fdp->infname, cur_node->fdp->infname, np->name);
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
2030 cur_node->been_warned = TRUE;
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
2031 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2032 return;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2033 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2034
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2035 /* Actually add the node */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2036 add_node (np, dif < 0 ? &cur_node->left : &cur_node->right);
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2037 } /* if CTAGS mode */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2038 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2039
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2040 /*
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2041 * invalidate_nodes ()
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2042 * Scan the node tree and invalidate all nodes pointing to the
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2043 * given file description (CTAGS case) or free them (ETAGS case).
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2044 */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2045 static void
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2046 invalidate_nodes (badfdp, npp)
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2047 fdesc *badfdp;
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2048 node **npp;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2049 {
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2050 node *np = *npp;
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2051
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2052 if (np == NULL)
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2053 return;
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2054
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2055 if (CTAGS)
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2056 {
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2057 if (np->left != NULL)
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2058 invalidate_nodes (badfdp, &np->left);
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2059 if (np->fdp == badfdp)
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
2060 np->valid = FALSE;
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2061 if (np->right != NULL)
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2062 invalidate_nodes (badfdp, &np->right);
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2063 }
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2064 else
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2065 {
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
2066 assert (np->fdp != NULL);
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2067 if (np->fdp == badfdp)
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2068 {
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
2069 *npp = np->left; /* detach the sublist from the list */
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2070 np->left = NULL; /* isolate it */
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2071 free_tree (np); /* free it */
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
2072 invalidate_nodes (badfdp, npp);
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2073 }
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
2074 else
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
2075 invalidate_nodes (badfdp, &np->left);
44735
98b894d1d3ad (last_node): Make it a global variable.
Francesco Potortì <pot@gnu.org>
parents: 44614
diff changeset
2076 }
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2077 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2078
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2079
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2080 static int total_size_of_entries __P((node *));
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2081 static int number_len __P((long));
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2082
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2083 /* Length of a non-negative number's decimal representation. */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2084 static int
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2085 number_len (num)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2086 long num;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2087 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2088 int len = 1;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2089 while ((num /= 10) > 0)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2090 len += 1;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2091 return len;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2092 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2093
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2094 /*
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2095 * Return total number of characters that put_entries will output for
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2096 * the nodes in the linked list at the right of the specified node.
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2097 * This count is irrelevant with etags.el since emacs 19.34 at least,
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2098 * but is still supplied for backward compatibility.
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2099 */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2100 static int
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2101 total_size_of_entries (np)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2102 register node *np;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2103 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2104 register int total = 0;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2105
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2106 for (; np != NULL; np = np->right)
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2107 if (np->valid)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2108 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2109 total += strlen (np->regex) + 1; /* pat\177 */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2110 if (np->name != NULL)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2111 total += strlen (np->name) + 1; /* name\001 */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2112 total += number_len ((long) np->lno) + 1; /* lno, */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2113 if (np->cno != invalidcharno) /* cno */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2114 total += number_len (np->cno);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2115 total += 1; /* newline */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2116 }
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2117
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2118 return total;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2119 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2120
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
2121 static void
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2122 put_entries (np)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2123 register node *np;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2124 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2125 register char *sp;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2126 static fdesc *fdp = NULL;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2127
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2128 if (np == NULL)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2129 return;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2130
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2131 /* Output subentries that precede this one */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2132 if (CTAGS)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2133 put_entries (np->left);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2134
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2135 /* Output this entry */
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2136 if (np->valid)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2137 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2138 if (!CTAGS)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2139 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2140 /* Etags mode */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2141 if (fdp != np->fdp)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2142 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2143 fdp = np->fdp;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2144 fprintf (tagf, "\f\n%s,%d\n",
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2145 fdp->taggedfname, total_size_of_entries (np));
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2146 fdp->written = TRUE;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2147 }
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2148 fputs (np->regex, tagf);
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2149 fputc ('\177', tagf);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2150 if (np->name != NULL)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2151 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2152 fputs (np->name, tagf);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2153 fputc ('\001', tagf);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2154 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2155 fprintf (tagf, "%d,", np->lno);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2156 if (np->cno != invalidcharno)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2157 fprintf (tagf, "%ld", np->cno);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2158 fputs ("\n", tagf);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2159 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2160 else
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2161 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2162 /* Ctags mode */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2163 if (np->name == NULL)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2164 error ("internal error: NULL name in ctags mode.", (char *)NULL);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2165
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2166 if (cxref_style)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2167 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2168 if (vgrind_style)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2169 fprintf (stdout, "%s %s %d\n",
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2170 np->name, np->fdp->taggedfname, (np->lno + 63) / 64);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2171 else
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2172 fprintf (stdout, "%-16s %3d %-16s %s\n",
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2173 np->name, np->lno, np->fdp->taggedfname, np->regex);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2174 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2175 else
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2176 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2177 fprintf (tagf, "%s\t%s\t", np->name, np->fdp->taggedfname);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2178
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2179 if (np->is_func)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2180 { /* function or #define macro with args */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2181 putc (searchar, tagf);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2182 putc ('^', tagf);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2183
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
2184 for (sp = np->regex; *sp; sp++)
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2185 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2186 if (*sp == '\\' || *sp == searchar)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2187 putc ('\\', tagf);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2188 putc (*sp, tagf);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2189 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2190 putc (searchar, tagf);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2191 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2192 else
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2193 { /* anything else; text pattern inadequate */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2194 fprintf (tagf, "%d", np->lno);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2195 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2196 putc ('\n', tagf);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2197 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2198 }
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2199 } /* if this node contains a valid tag */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2200
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2201 /* Output subentries that follow this one */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2202 put_entries (np->right);
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2203 if (!CTAGS)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2204 put_entries (np->left);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2205 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2206
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2207
35740
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2208 /* C extensions. */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2209 #define C_EXT 0x00fff /* C extensions */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2210 #define C_PLAIN 0x00000 /* C */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2211 #define C_PLPL 0x00001 /* C++ */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2212 #define C_STAR 0x00003 /* C* */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2213 #define C_JAVA 0x00005 /* JAVA */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2214 #define C_AUTO 0x01000 /* C, but switch to C++ if `class' is met */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2215 #define YACC 0x10000 /* yacc file */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2216
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2217 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2218 * The C symbol tables.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2219 */
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2220 enum sym_type
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2221 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2222 st_none,
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2223 st_C_objprot, st_C_objimpl, st_C_objend,
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2224 st_C_gnumacro,
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2225 st_C_ignore,
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2226 st_C_javastruct,
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2227 st_C_operator,
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2228 st_C_class, st_C_template,
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2229 st_C_struct, st_C_extern, st_C_enum, st_C_define, st_C_typedef, st_C_typespec
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2230 };
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2231
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2232 static unsigned int hash __P((const char *, unsigned int));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2233 static struct C_stab_entry * in_word_set __P((const char *, unsigned int));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2234 static enum sym_type C_symtype __P((char *, int, int));
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
2235
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2236 /* Feed stuff between (but not including) %[ and %] lines to:
15579
690a439bcc0e * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
Francesco Potortì <pot@gnu.org>
parents: 15407
diff changeset
2237 gperf -c -k 1,3 -o -p -r -t
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2238 %[
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2239 struct C_stab_entry { char *name; int c_ext; enum sym_type type; }
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2240 %%
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2241 if, 0, st_C_ignore
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2242 for, 0, st_C_ignore
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2243 while, 0, st_C_ignore
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2244 switch, 0, st_C_ignore
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2245 return, 0, st_C_ignore
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2246 @interface, 0, st_C_objprot
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2247 @protocol, 0, st_C_objprot
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2248 @implementation,0, st_C_objimpl
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2249 @end, 0, st_C_objend
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2250 import, C_JAVA, st_C_ignore
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2251 package, C_JAVA, st_C_ignore
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2252 friend, C_PLPL, st_C_ignore
17785
5b92f8ba5c6d Added support for the Java language.
Francesco Potortì <pot@gnu.org>
parents: 17778
diff changeset
2253 extends, C_JAVA, st_C_javastruct
5b92f8ba5c6d Added support for the Java language.
Francesco Potortì <pot@gnu.org>
parents: 17778
diff changeset
2254 implements, C_JAVA, st_C_javastruct
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2255 interface, C_JAVA, st_C_struct
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2256 class, 0, st_C_class
15579
690a439bcc0e * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
Francesco Potortì <pot@gnu.org>
parents: 15407
diff changeset
2257 namespace, C_PLPL, st_C_struct
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2258 domain, C_STAR, st_C_struct
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2259 union, 0, st_C_struct
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2260 struct, 0, st_C_struct
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2261 extern, 0, st_C_extern
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2262 enum, 0, st_C_enum
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2263 typedef, 0, st_C_typedef
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2264 define, 0, st_C_define
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2265 operator, C_PLPL, st_C_operator
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2266 template, 0, st_C_template
15579
690a439bcc0e * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
Francesco Potortì <pot@gnu.org>
parents: 15407
diff changeset
2267 bool, C_PLPL, st_C_typespec
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2268 long, 0, st_C_typespec
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2269 short, 0, st_C_typespec
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2270 int, 0, st_C_typespec
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2271 char, 0, st_C_typespec
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2272 float, 0, st_C_typespec
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2273 double, 0, st_C_typespec
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2274 signed, 0, st_C_typespec
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2275 unsigned, 0, st_C_typespec
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2276 auto, 0, st_C_typespec
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2277 void, 0, st_C_typespec
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2278 static, 0, st_C_typespec
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2279 const, 0, st_C_typespec
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2280 volatile, 0, st_C_typespec
15579
690a439bcc0e * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
Francesco Potortì <pot@gnu.org>
parents: 15407
diff changeset
2281 explicit, C_PLPL, st_C_typespec
690a439bcc0e * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
Francesco Potortì <pot@gnu.org>
parents: 15407
diff changeset
2282 mutable, C_PLPL, st_C_typespec
690a439bcc0e * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
Francesco Potortì <pot@gnu.org>
parents: 15407
diff changeset
2283 typename, C_PLPL, st_C_typespec
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2284 # DEFUN used in emacs, the next three used in glibc (SYSCALL only for mach).
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2285 DEFUN, 0, st_C_gnumacro
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2286 SYSCALL, 0, st_C_gnumacro
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2287 ENTRY, 0, st_C_gnumacro
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2288 PSEUDO, 0, st_C_gnumacro
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2289 # These are defined inside C functions, so currently they are not met.
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2290 # EXFUN used in glibc, DEFVAR_* in emacs.
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2291 #EXFUN, 0, st_C_gnumacro
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2292 #DEFVAR_, 0, st_C_gnumacro
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2293 %]
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2294 and replace lines between %< and %> with its output,
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2295 then make in_word_set and C_stab_entry static. */
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2296 /*%<*/
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2297 /* C code produced by gperf version 2.7.1 (19981006 egcs) */
15579
690a439bcc0e * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
Francesco Potortì <pot@gnu.org>
parents: 15407
diff changeset
2298 /* Command-line: gperf -c -k 1,3 -o -p -r -t */
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2299 struct C_stab_entry { char *name; int c_ext; enum sym_type type; };
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2300
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2301 #define TOTAL_KEYWORDS 47
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2302 #define MIN_WORD_LENGTH 2
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2303 #define MAX_WORD_LENGTH 15
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2304 #define MIN_HASH_VALUE 18
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2305 #define MAX_HASH_VALUE 138
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2306 /* maximum key range = 121, duplicates = 0 */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2307
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2308 #ifdef __GNUC__
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2309 __inline
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2310 #endif
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2311 static unsigned int
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2312 hash (str, len)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2313 register const char *str;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2314 register unsigned int len;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2315 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2316 static unsigned char asso_values[] =
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2317 {
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2318 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2319 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2320 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2321 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2322 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2323 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2324 139, 139, 139, 139, 63, 139, 139, 139, 33, 44,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2325 62, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2326 42, 139, 139, 12, 32, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2327 139, 139, 139, 139, 139, 139, 139, 34, 59, 37,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2328 24, 58, 33, 3, 139, 16, 139, 139, 42, 60,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2329 18, 11, 39, 139, 23, 57, 4, 63, 6, 20,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2330 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2331 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2332 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2333 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2334 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2335 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2336 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2337 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2338 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2339 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2340 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2341 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2342 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2343 139, 139, 139, 139, 139, 139
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2344 };
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2345 register int hval = len;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2346
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2347 switch (hval)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2348 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2349 default:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2350 case 3:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2351 hval += asso_values[(unsigned char)str[2]];
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2352 case 2:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2353 case 1:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2354 hval += asso_values[(unsigned char)str[0]];
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2355 break;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2356 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2357 return hval;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2358 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2359
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2360 #ifdef __GNUC__
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2361 __inline
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2362 #endif
35766
3584fc1b9b79 (in_word_set): Use `static' in definition (for pcc).
Dave Love <fx@gnu.org>
parents: 35758
diff changeset
2363 static struct C_stab_entry *
15579
690a439bcc0e * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
Francesco Potortì <pot@gnu.org>
parents: 15407
diff changeset
2364 in_word_set (str, len)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2365 register const char *str;
15579
690a439bcc0e * etags.c (C_stab_entry): New keywords for C++ namespace, bool,
Francesco Potortì <pot@gnu.org>
parents: 15407
diff changeset
2366 register unsigned int len;
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2367 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2368 static struct C_stab_entry wordlist[] =
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2369 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2370 {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2371 {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2372 {"if", 0, st_C_ignore},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2373 {""}, {""}, {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2374 {"int", 0, st_C_typespec},
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2375 {""}, {""},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2376 {"void", 0, st_C_typespec},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2377 {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2378 {"interface", C_JAVA, st_C_struct},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2379 {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2380 {"SYSCALL", 0, st_C_gnumacro},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2381 {""},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2382 {"return", 0, st_C_ignore},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2383 {""}, {""}, {""}, {""}, {""}, {""}, {""},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2384 {"while", 0, st_C_ignore},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2385 {"auto", 0, st_C_typespec},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2386 {""}, {""}, {""}, {""}, {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2387 {"float", 0, st_C_typespec},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2388 {"typedef", 0, st_C_typedef},
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2389 {"typename", C_PLPL, st_C_typespec},
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2390 {""}, {""}, {""},
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2391 {"friend", C_PLPL, st_C_ignore},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2392 {"volatile", 0, st_C_typespec},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2393 {""}, {""},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2394 {"for", 0, st_C_ignore},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2395 {"const", 0, st_C_typespec},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2396 {"import", C_JAVA, st_C_ignore},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2397 {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2398 {"define", 0, st_C_define},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2399 {"long", 0, st_C_typespec},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2400 {"implements", C_JAVA, st_C_javastruct},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2401 {"signed", 0, st_C_typespec},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2402 {""},
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2403 {"extern", 0, st_C_extern},
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2404 {"extends", C_JAVA, st_C_javastruct},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2405 {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2406 {"mutable", C_PLPL, st_C_typespec},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2407 {"template", 0, st_C_template},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2408 {"short", 0, st_C_typespec},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2409 {"bool", C_PLPL, st_C_typespec},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2410 {"char", 0, st_C_typespec},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2411 {"class", 0, st_C_class},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2412 {"operator", C_PLPL, st_C_operator},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2413 {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2414 {"switch", 0, st_C_ignore},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2415 {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2416 {"ENTRY", 0, st_C_gnumacro},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2417 {""},
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2418 {"package", C_JAVA, st_C_ignore},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2419 {"union", 0, st_C_struct},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2420 {"@end", 0, st_C_objend},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2421 {"struct", 0, st_C_struct},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2422 {"namespace", C_PLPL, st_C_struct},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2423 {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2424 {"domain", C_STAR, st_C_struct},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2425 {"@interface", 0, st_C_objprot},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2426 {"PSEUDO", 0, st_C_gnumacro},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2427 {"double", 0, st_C_typespec},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2428 {""},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2429 {"@protocol", 0, st_C_objprot},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2430 {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2431 {"static", 0, st_C_typespec},
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2432 {""}, {""},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2433 {"DEFUN", 0, st_C_gnumacro},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2434 {""}, {""}, {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2435 {"explicit", C_PLPL, st_C_typespec},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2436 {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2437 {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2438 {""},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2439 {"enum", 0, st_C_enum},
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2440 {""}, {""},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2441 {"unsigned", 0, st_C_typespec},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2442 {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2443 {"@implementation",0, st_C_objimpl}
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2444 };
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2445
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2446 if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2447 {
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2448 register int key = hash (str, len);
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2449
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2450 if (key <= MAX_HASH_VALUE && key >= 0)
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2451 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2452 register const char *s = wordlist[key].name;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2453
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2454 if (*str == *s && !strncmp (str + 1, s + 1, len - 1))
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2455 return &wordlist[key];
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2456 }
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2457 }
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2458 return 0;
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2459 }
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2460 /*%>*/
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2461
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
2462 static enum sym_type
16573
4ed8667d6bd9 Wed Nov 13 17:51:29 1996 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 16540
diff changeset
2463 C_symtype (str, len, c_ext)
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2464 char *str;
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2465 int len;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2466 int c_ext;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2467 {
16573
4ed8667d6bd9 Wed Nov 13 17:51:29 1996 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 16540
diff changeset
2468 register struct C_stab_entry *se = in_word_set (str, len);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2469
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2470 if (se == NULL || (se->c_ext && !(c_ext & se->c_ext)))
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2471 return st_none;
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2472 return se->type;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2473 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2474
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2475
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2476 /*
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2477 * C functions and variables are recognized using a simple
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2478 * finite automaton. fvdef is its state variable.
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2479 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2480 static enum
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2481 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2482 fvnone, /* nothing seen */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2483 fdefunkey, /* Emacs DEFUN keyword seen */
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2484 fdefunname, /* Emacs DEFUN name seen */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2485 foperator, /* func: operator keyword seen (cplpl) */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2486 fvnameseen, /* function or variable name seen */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2487 fstartlist, /* func: just after open parenthesis */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2488 finlist, /* func: in parameter list */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2489 flistseen, /* func: after parameter list */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2490 fignore, /* func: before open brace */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2491 vignore /* var-like: ignore until ';' */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2492 } fvdef;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2493
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2494 static bool fvextern; /* func or var: extern keyword seen; */
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2495
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2496 /*
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2497 * typedefs are recognized using a simple finite automaton.
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2498 * typdef is its state variable.
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2499 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2500 static enum
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2501 {
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
2502 tnone, /* nothing seen */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2503 tkeyseen, /* typedef keyword seen */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2504 ttypeseen, /* defined type seen */
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
2505 tinbody, /* inside typedef body */
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
2506 tend, /* just before typedef tag */
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
2507 tignore /* junk after typedef tag */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2508 } typdef;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2509
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2510 /*
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2511 * struct-like structures (enum, struct and union) are recognized
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2512 * using another simple finite automaton. `structdef' is its state
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2513 * variable.
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2514 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2515 static enum
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2516 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2517 snone, /* nothing seen yet,
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2518 or in struct body if cblev > 0 */
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2519 skeyseen, /* struct-like keyword seen */
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2520 stagseen, /* struct-like tag seen */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2521 sintemplate, /* inside template (ignore) */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2522 scolonseen /* colon seen after struct-like tag */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2523 } structdef;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
2524
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2525 /*
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2526 * When objdef is different from onone, objtag is the name of the class.
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2527 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2528 static char *objtag = "<uninited>";
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2529
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2530 /*
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2531 * Yet another little state machine to deal with preprocessor lines.
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2532 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2533 static enum
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2534 {
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2535 dnone, /* nothing seen */
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2536 dsharpseen, /* '#' seen as first char on line */
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2537 ddefineseen, /* '#' and 'define' seen */
5044
d3bd7baee39f (FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
Richard M. Stallman <rms@gnu.org>
parents: 4937
diff changeset
2538 dignorerest /* ignore rest of line */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2539 } definedef;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2540
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2541 /*
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2542 * State machine for Objective C protocols and implementations.
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2543 * Idea by Tom R.Hageman <tom@basil.icce.rug.nl> (1995)
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2544 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2545 static enum
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2546 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2547 onone, /* nothing seen */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2548 oprotocol, /* @interface or @protocol seen */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2549 oimplementation, /* @implementations seen */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2550 otagseen, /* class name seen */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2551 oparenseen, /* parenthesis before category seen */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2552 ocatseen, /* category name seen */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2553 oinbody, /* in @implementation body */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2554 omethodsign, /* in @implementation body, after +/- */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2555 omethodtag, /* after method name */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2556 omethodcolon, /* after method colon */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2557 omethodparm, /* after method parameter */
14230
6b836f84bccf (enum sym_type, anonymous enum): Delete final comma.
Karl Heuer <kwzh@gnu.org>
parents: 14186
diff changeset
2558 oignore /* wait for @end */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2559 } objdef;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2560
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2561
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2562 /*
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2563 * Use this structure to keep info about the token read, and how it
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2564 * should be tagged. Used by the make_C_tag function to build a tag.
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2565 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2566 static struct tok
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2567 {
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2568 char *line; /* string containing the token */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2569 int offset; /* where the token starts in LINE */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2570 int length; /* token length */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2571 /*
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2572 The previous members can be used to pass strings around for generic
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2573 purposes. The following ones specifically refer to creating tags. In this
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2574 case the token contained here is the pattern that will be used to create a
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2575 tag.
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2576 */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2577 bool valid; /* do not create a tag; the token should be
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2578 invalidated whenever a state machine is
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2579 reset prematurely */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2580 bool named; /* create a named tag */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2581 int lineno; /* source line number of tag */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2582 long linepos; /* source char number of tag */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2583 } token; /* latest token read */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2584
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2585 /*
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2586 * Variables and functions for dealing with nested structures.
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2587 * Idea by Mykola Dzyuba <mdzyuba@yahoo.com> (2001)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2588 */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2589 static void pushclass_above __P((int, char *, int));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2590 static void popclass_above __P((int));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2591 static void write_classname __P((linebuffer *, char *qualifier));
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2592
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2593 static struct {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2594 char **cname; /* nested class names */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2595 int *cblev; /* nested class curly brace level */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2596 int nl; /* class nesting level (elements used) */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2597 int size; /* length of the array */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2598 } cstack; /* stack for nested declaration tags */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2599 /* Current struct nesting depth (namespace, class, struct, union, enum). */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2600 #define nestlev (cstack.nl)
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
2601 /* After struct keyword or in struct body, not inside a nested function. */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2602 #define instruct (structdef == snone && nestlev > 0 \
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2603 && cblev == cstack.cblev[nestlev-1] + 1)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2604
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2605 static void
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2606 pushclass_above (cblev, str, len)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2607 int cblev;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2608 char *str;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2609 int len;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2610 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2611 int nl;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2612
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2613 popclass_above (cblev);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2614 nl = cstack.nl;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2615 if (nl >= cstack.size)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2616 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2617 int size = cstack.size *= 2;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2618 xrnew (cstack.cname, size, char *);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2619 xrnew (cstack.cblev, size, int);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2620 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2621 assert (nl == 0 || cstack.cblev[nl-1] < cblev);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2622 cstack.cname[nl] = (str == NULL) ? NULL : savenstr (str, len);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2623 cstack.cblev[nl] = cblev;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2624 cstack.nl = nl + 1;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2625 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2626
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2627 static void
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2628 popclass_above (cblev)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2629 int cblev;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2630 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2631 int nl;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2632
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2633 for (nl = cstack.nl - 1;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2634 nl >= 0 && cstack.cblev[nl] >= cblev;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2635 nl--)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2636 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2637 if (cstack.cname[nl] != NULL)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2638 free (cstack.cname[nl]);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2639 cstack.nl = nl;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2640 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2641 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2642
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2643 static void
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2644 write_classname (cn, qualifier)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2645 linebuffer *cn;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2646 char *qualifier;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2647 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2648 int i, len;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2649 int qlen = strlen (qualifier);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2650
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2651 if (cstack.nl == 0 || cstack.cname[0] == NULL)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2652 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2653 len = 0;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2654 cn->len = 0;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2655 cn->buffer[0] = '\0';
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2656 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2657 else
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2658 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2659 len = strlen (cstack.cname[0]);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2660 linebuffer_setlen (cn, len);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2661 strcpy (cn->buffer, cstack.cname[0]);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2662 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2663 for (i = 1; i < cstack.nl; i++)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2664 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2665 char *s;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2666 int slen;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2667
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2668 s = cstack.cname[i];
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2669 if (s == NULL)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2670 continue;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2671 slen = strlen (s);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2672 len += slen + qlen;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2673 linebuffer_setlen (cn, len);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2674 strncat (cn->buffer, qualifier, qlen);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2675 strncat (cn->buffer, s, slen);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2676 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2677 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2678
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2679
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2680 static bool consider_token __P((char *, int, int, int *, int, int, bool *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2681 static void make_C_tag __P((bool));
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
2682
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2683 /*
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2684 * consider_token ()
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2685 * checks to see if the current token is at the start of a
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2686 * function or variable, or corresponds to a typedef, or
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2687 * is a struct/union/enum tag, or #define, or an enum constant.
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2688 *
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
2689 * *IS_FUNC gets TRUE iff the token is a function or #define macro
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2690 * with args. C_EXTP points to which language we are looking at.
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2691 *
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2692 * Globals
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2693 * fvdef IN OUT
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2694 * structdef IN OUT
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2695 * definedef IN OUT
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2696 * typdef IN OUT
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2697 * objdef IN OUT
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2698 */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2699
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
2700 static bool
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2701 consider_token (str, len, c, c_extp, cblev, parlev, is_func_or_var)
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2702 register char *str; /* IN: token pointer */
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2703 register int len; /* IN: token length */
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
2704 register int c; /* IN: first char after the token */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2705 int *c_extp; /* IN, OUT: C extensions mask */
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2706 int cblev; /* IN: curly brace level */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2707 int parlev; /* IN: parenthesis level */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2708 bool *is_func_or_var; /* OUT: function or variable found */
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2709 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2710 /* When structdef is stagseen, scolonseen, or snone with cblev > 0,
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2711 structtype is the type of the preceding struct-like keyword, and
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2712 structcblev is the curly brace level where it has been seen. */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2713 static enum sym_type structtype;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2714 static int structcblev;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2715 static enum sym_type toktype;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2716
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2717
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2718 toktype = C_symtype (str, len, *c_extp);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2719
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2720 /*
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2721 * Advance the definedef state machine.
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2722 */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2723 switch (definedef)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2724 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2725 case dnone:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2726 /* We're not on a preprocessor line. */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2727 if (toktype == st_C_gnumacro)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2728 {
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2729 fvdef = fdefunkey;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2730 return FALSE;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2731 }
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2732 break;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2733 case dsharpseen:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2734 if (toktype == st_C_define)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2735 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2736 definedef = ddefineseen;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2737 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2738 else
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2739 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2740 definedef = dignorerest;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2741 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2742 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2743 case ddefineseen:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2744 /*
9193
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
2745 * Make a tag for any macro, unless it is a constant
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
2746 * and constantypedefs is FALSE.
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2747 */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2748 definedef = dignorerest;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2749 *is_func_or_var = (c == '(');
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2750 if (!*is_func_or_var && !constantypedefs)
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2751 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2752 else
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2753 return TRUE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2754 case dignorerest:
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2755 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2756 default:
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
2757 error ("internal error: definedef value.", (char *)NULL);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2758 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2759
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2760 /*
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2761 * Now typedefs
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2762 */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2763 switch (typdef)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2764 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2765 case tnone:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2766 if (toktype == st_C_typedef)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2767 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2768 if (typedefs)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2769 typdef = tkeyseen;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2770 fvextern = FALSE;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2771 fvdef = fvnone;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2772 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2773 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2774 break;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2775 case tkeyseen:
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2776 switch (toktype)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2777 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2778 case st_none:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2779 case st_C_typespec:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2780 case st_C_class:
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2781 case st_C_struct:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2782 case st_C_enum:
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2783 typdef = ttypeseen;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2784 break;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2785 }
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2786 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2787 case ttypeseen:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2788 if (structdef == snone && fvdef == fvnone)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2789 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2790 fvdef = fvnameseen;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2791 return TRUE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2792 }
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2793 break;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2794 case tend:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2795 switch (toktype)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2796 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2797 case st_C_typespec:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2798 case st_C_class:
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2799 case st_C_struct:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2800 case st_C_enum:
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2801 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2802 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2803 return TRUE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2804 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2805
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2806 /*
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2807 * This structdef business is NOT invoked when we are ctags and the
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2808 * file is plain C. This is because a struct tag may have the same
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2809 * name as another tag, and this loses with ctags.
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2810 */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2811 switch (toktype)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2812 {
17785
5b92f8ba5c6d Added support for the Java language.
Francesco Potortì <pot@gnu.org>
parents: 17778
diff changeset
2813 case st_C_javastruct:
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
2814 if (structdef == stagseen)
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
2815 structdef = scolonseen;
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
2816 return FALSE;
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2817 case st_C_template:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2818 case st_C_class:
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2819 if ((*c_extp & C_AUTO) /* automatic detection of C++ language */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2820 && cblev == 0
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2821 && definedef == dnone && structdef == snone
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2822 && typdef == tnone && fvdef == fvnone)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2823 *c_extp = (*c_extp | C_PLPL) & ~C_AUTO;
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2824 if (toktype == st_C_template)
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2825 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2826 /* FALLTHRU */
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2827 case st_C_struct:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2828 case st_C_enum:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2829 if (parlev == 0
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2830 && fvdef != vignore
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2831 && (typdef == tkeyseen
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2832 || (typedefs_or_cplusplus && structdef == snone)))
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2833 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2834 structdef = skeyseen;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2835 structtype = toktype;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2836 structcblev = cblev;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2837 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2838 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2839 }
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
2840
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2841 if (structdef == skeyseen)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2842 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2843 structdef = stagseen;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2844 return TRUE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2845 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2846
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2847 if (typdef != tnone)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2848 definedef = dnone;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2849
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
2850 /* Detect Objective C constructs. */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2851 switch (objdef)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2852 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2853 case onone:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2854 switch (toktype)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2855 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2856 case st_C_objprot:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2857 objdef = oprotocol;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2858 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2859 case st_C_objimpl:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2860 objdef = oimplementation;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2861 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2862 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2863 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2864 case oimplementation:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2865 /* Save the class tag for functions or variables defined inside. */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2866 objtag = savenstr (str, len);
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2867 objdef = oinbody;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2868 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2869 case oprotocol:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2870 /* Save the class tag for categories. */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2871 objtag = savenstr (str, len);
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2872 objdef = otagseen;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2873 *is_func_or_var = TRUE;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2874 return TRUE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2875 case oparenseen:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2876 objdef = ocatseen;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2877 *is_func_or_var = TRUE;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2878 return TRUE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2879 case oinbody:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2880 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2881 case omethodsign:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2882 if (parlev == 0)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2883 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2884 objdef = omethodtag;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2885 linebuffer_setlen (&token_name, len);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2886 strncpy (token_name.buffer, str, len);
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2887 token_name.buffer[len] = '\0';
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2888 return TRUE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2889 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2890 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2891 case omethodcolon:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2892 if (parlev == 0)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2893 objdef = omethodparm;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2894 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2895 case omethodparm:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2896 if (parlev == 0)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2897 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2898 objdef = omethodtag;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2899 linebuffer_setlen (&token_name, token_name.len + len);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2900 strncat (token_name.buffer, str, len);
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2901 return TRUE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2902 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2903 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2904 case oignore:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2905 if (toktype == st_C_objend)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2906 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2907 /* Memory leakage here: the string pointed by objtag is
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2908 never released, because many tests would be needed to
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2909 avoid breaking on incorrect input code. The amount of
14021
19bab04cf346 (substitute): Fix spelling in message.
Karl Heuer <kwzh@gnu.org>
parents: 13696
diff changeset
2910 memory leaked here is the sum of the lengths of the
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2911 class tags.
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2912 free (objtag); */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2913 objdef = onone;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2914 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2915 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2916 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2917
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2918 /* A function, variable or enum constant? */
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2919 switch (toktype)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2920 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2921 case st_C_extern:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2922 fvextern = TRUE;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2923 /* FALLTHRU */
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2924 case st_C_typespec:
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2925 switch (fvdef)
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2926 {
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2927 case finlist:
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2928 case flistseen:
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2929 case fignore:
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2930 case vignore:
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2931 break;
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2932 default:
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2933 fvdef = fvnone;
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2934 }
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2935 return FALSE;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2936 case st_C_ignore:
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2937 fvextern = FALSE;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2938 fvdef = vignore;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2939 return FALSE;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2940 case st_C_operator:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2941 fvdef = foperator;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2942 *is_func_or_var = TRUE;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2943 return TRUE;
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
2944 case st_none:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2945 if (constantypedefs
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2946 && structdef == snone
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2947 && structtype == st_C_enum && cblev > structcblev)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2948 return TRUE; /* enum constant */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2949 switch (fvdef)
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2950 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2951 case fdefunkey:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2952 if (cblev > 0)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2953 break;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2954 fvdef = fdefunname; /* GNU macro */
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2955 *is_func_or_var = TRUE;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2956 return TRUE;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2957 case fvnone:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2958 if ((strneq (str, "asm", 3) && endtoken (str[3]))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2959 || (strneq (str, "__asm__", 7) && endtoken (str[7])))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2960 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2961 fvdef = vignore;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2962 return FALSE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2963 }
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2964 if (strneq (str+len-10, "::operator", 10))
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2965 {
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2966 if (*c_extp & C_AUTO) /* automatic detection of C++ */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
2967 *c_extp = (*c_extp | C_PLPL) & ~C_AUTO;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2968 fvdef = foperator;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2969 *is_func_or_var = TRUE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2970 return TRUE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2971 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2972 if (cblev > 0 && !instruct)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2973 break;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2974 fvdef = fvnameseen; /* function or variable */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2975 *is_func_or_var = TRUE;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2976 return TRUE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2977 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2978 break;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2979 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2980
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2981 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2982 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2983
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2984
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2985 /*
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2986 * C_entries often keeps pointers to tokens or lines which are older than
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2987 * the line currently read. By keeping two line buffers, and switching
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2988 * them at end of line, it is possible to use those pointers.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2989 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2990 static struct
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2991 {
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2992 long linepos;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2993 linebuffer lb;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2994 } lbs[2];
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2995
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2996 #define current_lb_is_new (newndx == curndx)
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2997 #define switch_line_buffers() (curndx = 1 - curndx)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2998
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2999 #define curlb (lbs[curndx].lb)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3000 #define newlb (lbs[newndx].lb)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3001 #define curlinepos (lbs[curndx].linepos)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3002 #define newlinepos (lbs[newndx].linepos)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3003
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3004 #define plainc ((c_ext & C_EXT) == C_PLAIN)
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3005 #define cplpl (c_ext & C_PLPL)
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3006 #define cjava ((c_ext & C_JAVA) == C_JAVA)
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3007
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3008 #define CNL_SAVE_DEFINEDEF() \
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3009 do { \
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
3010 curlinepos = charno; \
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
3011 readline (&curlb, inf); \
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3012 lp = curlb.buffer; \
2004
6469a137fea6 (C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents: 1938
diff changeset
3013 quotednl = FALSE; \
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3014 newndx = curndx; \
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3015 } while (0)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3016
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3017 #define CNL() \
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3018 do { \
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3019 CNL_SAVE_DEFINEDEF(); \
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3020 if (savetoken.valid) \
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
3021 { \
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3022 token = savetoken; \
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3023 savetoken.valid = FALSE; \
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
3024 } \
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3025 definedef = dnone; \
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3026 } while (0)
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3027
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
3028
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3029 static void
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3030 make_C_tag (isfun)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3031 bool isfun;
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
3032 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3033 /* This function should never be called when token.valid is FALSE, but
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
3034 we must protect against invalid input or internal errors. */
45925
5f3ac9accae3 Use, together with etags.el, an optimised form of tags,
Francesco Potortì <pot@gnu.org>
parents: 45918
diff changeset
3035 if (!DEBUG && !token.valid)
5f3ac9accae3 Use, together with etags.el, an optimised form of tags,
Francesco Potortì <pot@gnu.org>
parents: 45918
diff changeset
3036 return;
5f3ac9accae3 Use, together with etags.el, an optimised form of tags,
Francesco Potortì <pot@gnu.org>
parents: 45918
diff changeset
3037
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3038 if (token.valid)
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3039 make_tag (token_name.buffer, token_name.len, isfun, token.line,
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3040 token.offset+token.length+1, token.lineno, token.linepos);
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3041 else /* this case is optimised away if !DEBUG */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3042 make_tag (concat ("INVALID TOKEN:-->", token_name.buffer, ""),
45925
5f3ac9accae3 Use, together with etags.el, an optimised form of tags,
Francesco Potortì <pot@gnu.org>
parents: 45918
diff changeset
3043 token_name.len + 17, isfun, token.line,
5f3ac9accae3 Use, together with etags.el, an optimised form of tags,
Francesco Potortì <pot@gnu.org>
parents: 45918
diff changeset
3044 token.offset+token.length+1, token.lineno, token.linepos);
5f3ac9accae3 Use, together with etags.el, an optimised form of tags,
Francesco Potortì <pot@gnu.org>
parents: 45918
diff changeset
3045
5f3ac9accae3 Use, together with etags.el, an optimised form of tags,
Francesco Potortì <pot@gnu.org>
parents: 45918
diff changeset
3046 token.valid = FALSE;
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
3047 }
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
3048
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3049
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3050 /*
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3051 * C_entries ()
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3052 * This routine finds functions, variables, typedefs,
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3053 * #define's, enum constants and struct/union/enum definitions in
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3054 * C syntax and adds them to the list.
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3055 */
27658
5980f19581dc (pfnote, new_pfnote, C_entries, prolog_pred, erlang_func): Add
Dave Love <fx@gnu.org>
parents: 27595
diff changeset
3056 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3057 C_entries (c_ext, inf)
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3058 int c_ext; /* extension of C */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3059 FILE *inf; /* input file */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3060 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3061 register char c; /* latest char read; '\0' for end of line */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3062 register char *lp; /* pointer one beyond the character `c' */
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3063 int curndx, newndx; /* indices for current and new lb */
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
3064 register int tokoff; /* offset in line of start of current token */
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
3065 register int toklen; /* length of current token */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3066 char *qualifier; /* string used to qualify names */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3067 int qlen; /* length of qualifier */
4051
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
3068 int cblev; /* current curly brace level */
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3069 int parlev; /* current parenthesis level */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3070 int typdefcblev; /* cblev where a typedef struct body begun */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3071 bool incomm, inquote, inchar, quotednl, midtoken;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3072 bool yacc_rules; /* in the rules part of a yacc file */
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3073 struct tok savetoken; /* token saved during preprocessor handling */
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3074
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3075
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
3076 linebuffer_init (&lbs[0].lb);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
3077 linebuffer_init (&lbs[1].lb);
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3078 if (cstack.size == 0)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3079 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3080 cstack.size = (DEBUG) ? 1 : 4;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3081 cstack.nl = 0;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3082 cstack.cname = xnew (cstack.size, char *);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3083 cstack.cblev = xnew (cstack.size, int);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3084 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3085
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
3086 tokoff = toklen = typdefcblev = 0; /* keep compiler quiet */
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3087 curndx = newndx = 0;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3088 lp = curlb.buffer;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3089 *lp = 0;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3090
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3091 fvdef = fvnone; fvextern = FALSE; typdef = tnone;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3092 structdef = snone; definedef = dnone; objdef = onone;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3093 yacc_rules = FALSE;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3094 midtoken = inquote = inchar = incomm = quotednl = FALSE;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3095 token.valid = savetoken.valid = FALSE;
4051
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
3096 cblev = 0;
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3097 parlev = 0;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3098 if (cjava)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3099 { qualifier = "."; qlen = 1; }
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3100 else
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3101 { qualifier = "::"; qlen = 2; }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3102
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3103
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3104 while (!feof (inf))
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3105 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3106 c = *lp++;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3107 if (c == '\\')
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3108 {
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
3109 /* If we're at the end of the line, the next character is a
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
3110 '\0'; don't skip it, because it's the thing that tells us
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
3111 to read the next line. */
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3112 if (*lp == '\0')
2004
6469a137fea6 (C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents: 1938
diff changeset
3113 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3114 quotednl = TRUE;
2004
6469a137fea6 (C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents: 1938
diff changeset
3115 continue;
6469a137fea6 (C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents: 1938
diff changeset
3116 }
401
24b63d6679b6 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 240
diff changeset
3117 lp++;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3118 c = ' ';
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3119 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3120 else if (incomm)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3121 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3122 switch (c)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3123 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3124 case '*':
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3125 if (*lp == '/')
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3126 {
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3127 c = *lp++;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3128 incomm = FALSE;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3129 }
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3130 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3131 case '\0':
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3132 /* Newlines inside comments do not end macro definitions in
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3133 traditional cpp. */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3134 CNL_SAVE_DEFINEDEF ();
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3135 break;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3136 }
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3137 continue;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3138 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3139 else if (inquote)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3140 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3141 switch (c)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3142 {
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3143 case '"':
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3144 inquote = FALSE;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3145 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3146 case '\0':
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3147 /* Newlines inside strings do not end macro definitions
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3148 in traditional cpp, even though compilers don't
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3149 usually accept them. */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3150 CNL_SAVE_DEFINEDEF ();
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3151 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3152 }
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3153 continue;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3154 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3155 else if (inchar)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3156 {
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3157 switch (c)
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3158 {
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3159 case '\0':
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3160 /* Hmmm, something went wrong. */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3161 CNL ();
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3162 /* FALLTHRU */
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3163 case '\'':
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3164 inchar = FALSE;
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3165 break;
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3166 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3167 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3168 }
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
3169 else
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3170 switch (c)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3171 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3172 case '"':
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3173 inquote = TRUE;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3174 switch (fvdef)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3175 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3176 case fdefunkey:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3177 case fstartlist:
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3178 case finlist:
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3179 case fignore:
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3180 case vignore:
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3181 break;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3182 default:
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3183 fvextern = FALSE;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3184 fvdef = fvnone;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3185 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3186 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3187 case '\'':
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3188 inchar = TRUE;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3189 if (fvdef != finlist && fvdef != fignore && fvdef !=vignore)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3190 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3191 fvextern = FALSE;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3192 fvdef = fvnone;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3193 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3194 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3195 case '/':
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3196 if (*lp == '*')
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3197 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3198 lp++;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3199 incomm = TRUE;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3200 continue;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3201 }
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3202 else if (/* cplpl && */ *lp == '/')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3203 {
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3204 c = '\0';
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 621
diff changeset
3205 break;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3206 }
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3207 else
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3208 break;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3209 case '%':
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3210 if ((c_ext & YACC) && *lp == '%')
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3211 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3212 /* Entering or exiting rules section in yacc file. */
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3213 lp++;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3214 definedef = dnone; fvdef = fvnone; fvextern = FALSE;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3215 typdef = tnone; structdef = snone;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3216 midtoken = inquote = inchar = incomm = quotednl = FALSE;
4051
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
3217 cblev = 0;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3218 yacc_rules = !yacc_rules;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3219 continue;
4051
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
3220 }
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3221 else
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3222 break;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3223 case '#':
9193
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3224 if (definedef == dnone)
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3225 {
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3226 char *cp;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3227 bool cpptoken = TRUE;
9193
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3228
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3229 /* Look back on this line. If all blanks, or nonblanks
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3230 followed by an end of comment, this is a preprocessor
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3231 token. */
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3232 for (cp = newlb.buffer; cp < lp-1; cp++)
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3233 if (!iswhite (*cp))
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3234 {
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3235 if (*cp == '*' && *(cp+1) == '/')
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3236 {
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3237 cp++;
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3238 cpptoken = TRUE;
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3239 }
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3240 else
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3241 cpptoken = FALSE;
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3242 }
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3243 if (cpptoken)
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3244 definedef = dsharpseen;
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3245 } /* if (definedef == dnone) */
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3246
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3247 continue;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3248 } /* switch (c) */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3249
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3250
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3251 /* Consider token only if some involved conditions are satisfied. */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3252 if (typdef != tignore
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3253 && definedef != dignorerest
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3254 && fvdef != finlist
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3255 && structdef != sintemplate
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3256 && (definedef != dnone
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3257 || structdef != scolonseen))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3258 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3259 if (midtoken)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3260 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3261 if (endtoken (c))
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3262 {
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3263 if (c == ':' && *lp == ':' && begtoken (lp[1]))
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3264 /* This handles :: in the middle,
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3265 but not at the beginning of an identifier.
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3266 Also, space-separated :: is not recognised. */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3267 {
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3268 if (c_ext & C_AUTO) /* automatic detection of C++ */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3269 c_ext = (c_ext | C_PLPL) & ~C_AUTO;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3270 lp += 2;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3271 toklen += 2;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3272 c = lp[-1];
35758
aa069bbee4c8 Work around small preprocessor bugs in sunos4 pcc and MinGW.
Francesco Potortì <pot@gnu.org>
parents: 35741
diff changeset
3273 goto still_in_token;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3274 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3275 else
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3276 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3277 bool funorvar = FALSE;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3278
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3279 if (yacc_rules
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3280 || consider_token (newlb.buffer + tokoff, toklen, c,
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3281 &c_ext, cblev, parlev, &funorvar))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3282 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3283 if (fvdef == foperator)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3284 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3285 char *oldlp = lp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3286 lp = skip_spaces (lp-1);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3287 if (*lp != '\0')
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3288 lp += 1;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3289 while (*lp != '\0'
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
3290 && !iswhite (*lp) && *lp != '(')
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3291 lp += 1;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3292 c = *lp++;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3293 toklen += lp - oldlp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3294 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3295 token.named = FALSE;
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3296 if (!plainc
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3297 && nestlev > 0 && definedef == dnone)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3298 /* in struct body */
4750
cdefe4f21650 Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents: 4696
diff changeset
3299 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3300 write_classname (&token_name, qualifier);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3301 linebuffer_setlen (&token_name,
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3302 token_name.len+qlen+toklen);
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3303 strcat (token_name.buffer, qualifier);
10801
32f98b512dd9 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
Francesco Potortì <pot@gnu.org>
parents: 10761
diff changeset
3304 strncat (token_name.buffer,
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3305 newlb.buffer + tokoff, toklen);
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3306 token.named = TRUE;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3307 }
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3308 else if (objdef == ocatseen)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3309 /* Objective C category */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3310 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3311 int len = strlen (objtag) + 2 + toklen;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3312 linebuffer_setlen (&token_name, len);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3313 strcpy (token_name.buffer, objtag);
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3314 strcat (token_name.buffer, "(");
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3315 strncat (token_name.buffer,
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3316 newlb.buffer + tokoff, toklen);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3317 strcat (token_name.buffer, ")");
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3318 token.named = TRUE;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3319 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3320 else if (objdef == omethodtag
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3321 || objdef == omethodparm)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3322 /* Objective C method */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3323 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3324 token.named = TRUE;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3325 }
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3326 else if (fvdef == fdefunname)
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3327 /* GNU DEFUN and similar macros */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3328 {
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3329 bool defun = (newlb.buffer[tokoff] == 'F');
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3330 int off = tokoff;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3331 int len = toklen;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3332
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3333 /* Rewrite the tag so that emacs lisp DEFUNs
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3334 can be found by their elisp name */
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3335 if (defun)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3336 {
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3337 off += 1;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3338 len -= 1;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3339 }
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3340 len = toklen;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3341 linebuffer_setlen (&token_name, len);
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3342 strncpy (token_name.buffer,
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3343 newlb.buffer + off, len);
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3344 token_name.buffer[len] = '\0';
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3345 if (defun)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3346 while (--len >= 0)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3347 if (token_name.buffer[len] == '_')
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3348 token_name.buffer[len] = '-';
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3349 token.named = defun;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3350 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3351 else
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3352 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3353 linebuffer_setlen (&token_name, toklen);
10801
32f98b512dd9 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
Francesco Potortì <pot@gnu.org>
parents: 10761
diff changeset
3354 strncpy (token_name.buffer,
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3355 newlb.buffer + tokoff, toklen);
10801
32f98b512dd9 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
Francesco Potortì <pot@gnu.org>
parents: 10761
diff changeset
3356 token_name.buffer[toklen] = '\0';
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3357 /* Name macros and members. */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3358 token.named = (structdef == stagseen
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3359 || typdef == ttypeseen
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3360 || typdef == tend
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3361 || (funorvar
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3362 && definedef == dignorerest)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3363 || (funorvar
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3364 && definedef == dnone
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3365 && structdef == snone
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3366 && cblev > 0));
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3367 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3368 token.lineno = lineno;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3369 token.offset = tokoff;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3370 token.length = toklen;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3371 token.line = newlb.buffer;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3372 token.linepos = newlinepos;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3373 token.valid = TRUE;
4750
cdefe4f21650 Mon Sep 20 18:06:12 1993 Francesco Potorti` (pot at fly)
Francesco Potortì <pot@gnu.org>
parents: 4696
diff changeset
3374
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3375 if (definedef == dnone
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3376 && (fvdef == fvnameseen
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3377 || fvdef == foperator
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3378 || structdef == stagseen
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3379 || typdef == tend
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3380 || typdef == ttypeseen
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3381 || objdef != onone))
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3382 {
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
3383 if (current_lb_is_new)
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
3384 switch_line_buffers ();
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3385 }
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3386 else if (definedef != dnone
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3387 || fvdef == fdefunname
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3388 || instruct)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3389 make_C_tag (funorvar);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3390 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3391 midtoken = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3392 }
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3393 } /* if (endtoken (c)) */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3394 else if (intoken (c))
35758
aa069bbee4c8 Work around small preprocessor bugs in sunos4 pcc and MinGW.
Francesco Potortì <pot@gnu.org>
parents: 35741
diff changeset
3395 still_in_token:
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3396 {
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3397 toklen++;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3398 continue;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3399 }
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3400 } /* if (midtoken) */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3401 else if (begtoken (c))
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3402 {
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3403 switch (definedef)
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3404 {
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3405 case dnone:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3406 switch (fvdef)
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3407 {
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3408 case fstartlist:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3409 fvdef = finlist;
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3410 continue;
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3411 case flistseen:
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3412 if (plainc || declarations)
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3413 {
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3414 make_C_tag (TRUE); /* a function */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3415 fvdef = fignore;
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3416 }
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3417 break;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3418 case fvnameseen:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3419 fvdef = fvnone;
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3420 break;
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3421 }
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
3422 if (structdef == stagseen && !cjava)
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3423 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3424 popclass_above (cblev);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3425 structdef = snone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3426 }
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3427 break;
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3428 case dsharpseen:
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3429 savetoken = token;
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
3430 break;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3431 }
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3432 if (!yacc_rules || lp == newlb.buffer + 1)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3433 {
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3434 tokoff = lp - 1 - newlb.buffer;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3435 toklen = 1;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3436 midtoken = TRUE;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3437 }
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3438 continue;
10623
8a73e71a55e3 * etags.c (pfnote): Initialise been_warned in the node.
Francesco Potortì <pot@gnu.org>
parents: 10449
diff changeset
3439 } /* if (begtoken) */
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3440 } /* if must look at token */
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3441
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3442
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3443 /* Detect end of line, colon, comma, semicolon and various braces
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3444 after having handled a token.*/
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3445 switch (c)
401
24b63d6679b6 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 240
diff changeset
3446 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3447 case ':':
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3448 if (yacc_rules && token.offset == 0 && token.valid)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3449 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3450 make_C_tag (FALSE); /* a yacc function */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3451 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3452 }
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3453 if (definedef != dnone)
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3454 break;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3455 switch (objdef)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3456 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3457 case otagseen:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3458 objdef = oignore;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3459 make_C_tag (TRUE); /* an Objective C class */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3460 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3461 case omethodtag:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3462 case omethodparm:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3463 objdef = omethodcolon;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3464 linebuffer_setlen (&token_name, token_name.len + 1);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3465 strcat (token_name.buffer, ":");
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3466 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3467 }
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3468 if (structdef == stagseen)
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3469 {
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3470 structdef = scolonseen;
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3471 break;
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3472 }
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3473 /* Should be useless, but may be work as a safety net. */
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3474 if (cplpl && fvdef == flistseen)
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3475 {
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3476 make_C_tag (TRUE); /* a function */
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3477 fvdef = fignore;
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3478 break;
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3479 }
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3480 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3481 case ';':
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3482 if (definedef != dnone)
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3483 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3484 switch (typdef)
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
3485 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3486 case tend:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3487 case ttypeseen:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3488 make_C_tag (FALSE); /* a typedef */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3489 typdef = tnone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3490 fvdef = fvnone;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3491 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3492 case tnone:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3493 case tinbody:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3494 case tignore:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3495 switch (fvdef)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3496 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3497 case fignore:
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3498 if (typdef == tignore || cplpl)
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3499 fvdef = fvnone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3500 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3501 case fvnameseen:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3502 if ((globals && cblev == 0 && (!fvextern || declarations))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3503 || (members && instruct))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3504 make_C_tag (FALSE); /* a variable */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3505 fvextern = FALSE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3506 fvdef = fvnone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3507 token.valid = FALSE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3508 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3509 case flistseen:
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3510 if (declarations
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3511 && (typdef == tnone || (typdef != tignore && instruct)))
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3512 make_C_tag (TRUE); /* a function declaration */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3513 /* FALLTHRU */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3514 default:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3515 fvextern = FALSE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3516 fvdef = fvnone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3517 if (declarations
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3518 && cplpl && structdef == stagseen)
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3519 make_C_tag (FALSE); /* forward declaration */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3520 else
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3521 token.valid = FALSE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3522 } /* switch (fvdef) */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3523 /* FALLTHRU */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3524 default:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3525 if (!instruct)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3526 typdef = tnone;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
3527 }
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3528 if (structdef == stagseen)
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3529 structdef = snone;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3530 break;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3531 case ',':
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3532 if (definedef != dnone)
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3533 break;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3534 switch (objdef)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3535 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3536 case omethodtag:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3537 case omethodparm:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3538 make_C_tag (TRUE); /* an Objective C method */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3539 objdef = oinbody;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3540 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3541 }
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3542 switch (fvdef)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3543 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3544 case fdefunkey:
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3545 case foperator:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3546 case fstartlist:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3547 case finlist:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3548 case fignore:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3549 case vignore:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3550 break;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3551 case fdefunname:
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3552 fvdef = fignore;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3553 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3554 case fvnameseen: /* a variable */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3555 if ((globals && cblev == 0 && (!fvextern || declarations))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3556 || (members && instruct))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3557 make_C_tag (FALSE);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3558 break;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3559 case flistseen: /* a function */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3560 if ((declarations && typdef == tnone && !instruct)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3561 || (members && typdef != tignore && instruct))
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3562 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3563 make_C_tag (TRUE); /* a function declaration */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3564 fvdef = fvnameseen;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3565 }
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3566 else if (!declarations)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3567 fvdef = fvnone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3568 token.valid = FALSE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3569 break;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3570 default:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3571 fvdef = fvnone;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3572 }
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3573 if (structdef == stagseen)
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3574 structdef = snone;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3575 break;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3576 case '[':
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3577 if (definedef != dnone)
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3578 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3579 if (structdef == stagseen)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3580 structdef = snone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3581 switch (typdef)
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3582 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3583 case ttypeseen:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3584 case tend:
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3585 typdef = tignore;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3586 make_C_tag (FALSE); /* a typedef */
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3587 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3588 case tnone:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3589 case tinbody:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3590 switch (fvdef)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3591 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3592 case foperator:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3593 case finlist:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3594 case fignore:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3595 case vignore:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3596 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3597 case fvnameseen:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3598 if ((members && cblev == 1)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3599 || (globals && cblev == 0
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3600 && (!fvextern || declarations)))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3601 make_C_tag (FALSE); /* a variable */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3602 /* FALLTHRU */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3603 default:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3604 fvdef = fvnone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3605 }
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3606 break;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3607 }
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3608 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3609 case '(':
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3610 if (definedef != dnone)
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3611 break;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3612 if (objdef == otagseen && parlev == 0)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3613 objdef = oparenseen;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3614 switch (fvdef)
1938
1045deef809f (C_entries): Don't reset definedef when a newline inside a comment is met.
Richard M. Stallman <rms@gnu.org>
parents: 1796
diff changeset
3615 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3616 case fvnameseen:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3617 if (typdef == ttypeseen
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3618 && *lp != '*'
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3619 && !instruct)
9193
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3620 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3621 /* This handles constructs like:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3622 typedef void OperatorFun (int fun); */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3623 make_C_tag (FALSE);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3624 typdef = tignore;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3625 fvdef = fignore;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3626 break;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3627 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3628 /* FALLTHRU */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3629 case foperator:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3630 fvdef = fstartlist;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3631 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3632 case flistseen:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3633 fvdef = finlist;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3634 break;
1938
1045deef809f (C_entries): Don't reset definedef when a newline inside a comment is met.
Richard M. Stallman <rms@gnu.org>
parents: 1796
diff changeset
3635 }
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3636 parlev++;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3637 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3638 case ')':
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3639 if (definedef != dnone)
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3640 break;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3641 if (objdef == ocatseen && parlev == 1)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3642 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3643 make_C_tag (TRUE); /* an Objective C category */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3644 objdef = oignore;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3645 }
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3646 if (--parlev == 0)
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3647 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3648 switch (fvdef)
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3649 {
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3650 case fstartlist:
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3651 case finlist:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3652 fvdef = flistseen;
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3653 break;
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3654 }
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3655 if (!instruct
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3656 && (typdef == tend
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3657 || typdef == ttypeseen))
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3658 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3659 typdef = tignore;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3660 make_C_tag (FALSE); /* a typedef */
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3661 }
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3662 }
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3663 else if (parlev < 0) /* can happen due to ill-conceived #if's. */
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3664 parlev = 0;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3665 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3666 case '{':
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3667 if (definedef != dnone)
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3668 break;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3669 if (typdef == ttypeseen)
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3670 {
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
3671 /* Whenever typdef is set to tinbody (currently only
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
3672 here), typdefcblev should be set to cblev. */
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
3673 typdef = tinbody;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3674 typdefcblev = cblev;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3675 }
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3676 switch (fvdef)
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3677 {
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3678 case flistseen:
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3679 make_C_tag (TRUE); /* a function */
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3680 /* FALLTHRU */
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3681 case fignore:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3682 fvdef = fvnone;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3683 break;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3684 case fvnone:
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3685 switch (objdef)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3686 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3687 case otagseen:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3688 make_C_tag (TRUE); /* an Objective C class */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3689 objdef = oignore;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3690 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3691 case omethodtag:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3692 case omethodparm:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3693 make_C_tag (TRUE); /* an Objective C method */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3694 objdef = oinbody;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3695 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3696 default:
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
3697 /* Neutralize `extern "C" {' grot. */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3698 if (cblev == 0 && structdef == snone && nestlev == 0
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3699 && typdef == tnone)
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3700 cblev = -1;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3701 }
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
3702 break;
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3703 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3704 switch (structdef)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3705 {
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3706 case skeyseen: /* unnamed struct */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3707 pushclass_above (cblev, NULL, 0);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3708 structdef = snone;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3709 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3710 case stagseen: /* named struct or enum */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3711 case scolonseen: /* a class */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3712 pushclass_above (cblev, token.line+token.offset, token.length);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3713 structdef = snone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3714 make_C_tag (FALSE); /* a struct or enum */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3715 break;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3716 }
4051
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
3717 cblev++;
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3718 break;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3719 case '*':
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3720 if (definedef != dnone)
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3721 break;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3722 if (fvdef == fstartlist)
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3723 {
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3724 fvdef = fvnone; /* avoid tagging `foo' in `foo (*bar()) ()' */
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3725 token.valid = FALSE;
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3726 }
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3727 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3728 case '}':
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3729 if (definedef != dnone)
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3730 break;
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
3731 if (!ignoreindent && lp == newlb.buffer + 1)
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3732 {
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3733 if (cblev != 0)
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3734 token.valid = FALSE;
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3735 cblev = 0; /* reset curly brace level if first column */
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3736 parlev = 0; /* also reset paren level, just in case... */
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3737 }
4051
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
3738 else if (cblev > 0)
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
3739 cblev--;
47157
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3740 else
e47f0756e65a (consider_token, C_entries): Switch to C++ parsing when
Francesco Potortì <pot@gnu.org>
parents: 47103
diff changeset
3741 token.valid = FALSE; /* something gone amiss, token unreliable */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3742 popclass_above (cblev);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3743 structdef = snone;
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
3744 /* Only if typdef == tinbody is typdefcblev significant. */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3745 if (typdef == tinbody && cblev <= typdefcblev)
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3746 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3747 assert (cblev == typdefcblev);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3748 typdef = tend;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3749 }
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3750 break;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3751 case '=':
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3752 if (definedef != dnone)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3753 break;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3754 switch (fvdef)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3755 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3756 case foperator:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3757 case finlist:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3758 case fignore:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3759 case vignore:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3760 break;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3761 case fvnameseen:
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3762 if ((members && cblev == 1)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3763 || (globals && cblev == 0 && (!fvextern || declarations)))
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3764 make_C_tag (FALSE); /* a variable */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3765 /* FALLTHRU */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3766 default:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3767 fvdef = vignore;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3768 }
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3769 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3770 case '<':
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3771 if (cplpl && structdef == stagseen)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3772 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3773 structdef = sintemplate;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3774 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3775 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3776 goto resetfvdef;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3777 case '>':
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3778 if (structdef == sintemplate)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3779 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3780 structdef = stagseen;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3781 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3782 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3783 goto resetfvdef;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3784 case '+':
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3785 case '-':
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3786 if (objdef == oinbody && cblev == 0)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3787 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3788 objdef = omethodsign;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3789 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3790 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3791 /* FALLTHRU */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3792 resetfvdef:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3793 case '#': case '~': case '&': case '%': case '/': case '|':
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3794 case '^': case '!': case '.': case '?': case ']':
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3795 if (definedef != dnone)
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3796 break;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3797 /* These surely cannot follow a function tag in C. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3798 switch (fvdef)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3799 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3800 case foperator:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3801 case finlist:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3802 case fignore:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3803 case vignore:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3804 break;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3805 default:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3806 fvdef = fvnone;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3807 }
4937
50db67ef8d64 Mon Nov 8 19:56:20 MET 1993 Tom Hageman (tom@basil.icce.rug.nl)
Francesco Potortì <pot@gnu.org>
parents: 4905
diff changeset
3808 break;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3809 case '\0':
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3810 if (objdef == otagseen)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3811 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3812 make_C_tag (TRUE); /* an Objective C class */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3813 objdef = oignore;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3814 }
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3815 /* If a macro spans multiple lines don't reset its state. */
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3816 if (quotednl)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3817 CNL_SAVE_DEFINEDEF ();
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3818 else
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3819 CNL ();
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3820 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3821 } /* switch (c) */
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3822
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3823 } /* while not eof */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3824
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3825 free (lbs[0].lb.buffer);
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3826 free (lbs[1].lb.buffer);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3827 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3828
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3829 /*
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3830 * Process either a C++ file or a C file depending on the setting
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3831 * of a global flag.
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3832 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3833 static void
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3834 default_C_entries (inf)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3835 FILE *inf;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3836 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3837 C_entries (cplusplus ? C_PLPL : C_AUTO, inf);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3838 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3839
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3840 /* Always do plain C. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3841 static void
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3842 plain_C_entries (inf)
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3843 FILE *inf;
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3844 {
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3845 C_entries (0, inf);
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3846 }
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3847
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3848 /* Always do C++. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3849 static void
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3850 Cplusplus_entries (inf)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3851 FILE *inf;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3852 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3853 C_entries (C_PLPL, inf);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3854 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3855
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
3856 /* Always do Java. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3857 static void
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3858 Cjava_entries (inf)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3859 FILE *inf;
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
3860 {
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
3861 C_entries (C_JAVA, inf);
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
3862 }
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
3863
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3864 /* Always do C*. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3865 static void
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3866 Cstar_entries (inf)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3867 FILE *inf;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3868 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3869 C_entries (C_STAR, inf);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3870 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3871
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3872 /* Always do Yacc. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3873 static void
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3874 Yacc_entries (inf)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3875 FILE *inf;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3876 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3877 C_entries (YACC, inf);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3878 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3879
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3880
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
3881 /* Useful macros. */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3882 #define LOOP_ON_INPUT_LINES(file_pointer, line_buffer, char_pointer) \
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
3883 for (; /* loop initialization */ \
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3884 !feof (file_pointer) /* loop test */ \
45918
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
3885 && /* instructions at start of loop */ \
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
3886 (readline (&line_buffer, file_pointer), \
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
3887 char_pointer = line_buffer.buffer, \
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3888 TRUE); \
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3889 )
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
3890 #define LOOKING_AT(cp, keyword) /* keyword is a constant string */ \
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3891 (strneq ((cp), keyword, sizeof(keyword)-1) /* cp points at keyword */ \
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3892 && notinname ((cp)[sizeof(keyword)-1]) /* end of keyword */ \
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3893 && ((cp) = skip_spaces((cp)+sizeof(keyword)-1))) /* skip spaces */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3894
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3895 /*
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3896 * Read a file, but do no processing. This is used to do regexp
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3897 * matching on files that have no language defined.
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3898 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3899 static void
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3900 just_read_file (inf)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3901 FILE *inf;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3902 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3903 register char *dummy;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3904
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3905 LOOP_ON_INPUT_LINES (inf, lb, dummy)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3906 continue;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3907 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3908
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3909
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3910 /* Fortran parsing */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3911
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3912 static void F_takeprec __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3913 static void F_getit __P((FILE *));
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3914
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3915 static void
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3916 F_takeprec ()
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3917 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3918 dbp = skip_spaces (dbp);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3919 if (*dbp != '*')
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3920 return;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3921 dbp++;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3922 dbp = skip_spaces (dbp);
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3923 if (strneq (dbp, "(*)", 3))
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3924 {
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3925 dbp += 3;
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3926 return;
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3927 }
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
3928 if (!ISDIGIT (*dbp))
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3929 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3930 --dbp; /* force failure */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3931 return;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3932 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3933 do
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3934 dbp++;
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
3935 while (ISDIGIT (*dbp));
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3936 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3937
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3938 static void
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3939 F_getit (inf)
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3940 FILE *inf;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3941 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3942 register char *cp;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3943
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3944 dbp = skip_spaces (dbp);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3945 if (*dbp == '\0')
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3946 {
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
3947 readline (&lb, inf);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3948 dbp = lb.buffer;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3949 if (dbp[5] != '&')
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3950 return;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3951 dbp += 6;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3952 dbp = skip_spaces (dbp);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3953 }
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
3954 if (!ISALPHA (*dbp) && *dbp != '_' && *dbp != '$')
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3955 return;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3956 for (cp = dbp + 1; *cp != '\0' && intoken (*cp); cp++)
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3957 continue;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
3958 make_tag (dbp, cp-dbp, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
3959 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3960 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3961
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3962
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3963 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3964 Fortran_functions (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3965 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3966 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3967 LOOP_ON_INPUT_LINES (inf, lb, dbp)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3968 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3969 if (*dbp == '%')
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3970 dbp++; /* Ratfor escape to fortran */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3971 dbp = skip_spaces (dbp);
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
3972 if (*dbp == '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3973 continue;
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3974 switch (lowcase (*dbp))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3975 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3976 case 'i':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3977 if (nocase_tail ("integer"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3978 F_takeprec ();
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3979 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3980 case 'r':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3981 if (nocase_tail ("real"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3982 F_takeprec ();
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3983 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3984 case 'l':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3985 if (nocase_tail ("logical"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3986 F_takeprec ();
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3987 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3988 case 'c':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3989 if (nocase_tail ("complex") || nocase_tail ("character"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3990 F_takeprec ();
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3991 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3992 case 'd':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3993 if (nocase_tail ("double"))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3994 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3995 dbp = skip_spaces (dbp);
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
3996 if (*dbp == '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3997 continue;
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3998 if (nocase_tail ("precision"))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3999 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4000 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4001 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4002 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4003 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4004 dbp = skip_spaces (dbp);
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4005 if (*dbp == '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4006 continue;
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
4007 switch (lowcase (*dbp))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4008 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4009 case 'f':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4010 if (nocase_tail ("function"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4011 F_getit (inf);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4012 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4013 case 's':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4014 if (nocase_tail ("subroutine"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4015 F_getit (inf);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4016 continue;
1026
cc96e2df9b71 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 774
diff changeset
4017 case 'e':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4018 if (nocase_tail ("entry"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4019 F_getit (inf);
1026
cc96e2df9b71 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 774
diff changeset
4020 continue;
20788
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
4021 case 'b':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4022 if (nocase_tail ("blockdata") || nocase_tail ("block data"))
20788
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
4023 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4024 dbp = skip_spaces (dbp);
20788
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
4025 if (*dbp == '\0') /* assume un-named */
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4026 make_tag ("blockdata", 9, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4027 lb.buffer, dbp - lb.buffer, lineno, linecharno);
20788
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
4028 else
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4029 F_getit (inf); /* look for name */
20788
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
4030 }
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
4031 continue;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4032 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4033 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4034 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4035
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4036
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4037 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4038 * Ada parsing
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4039 * Original code by
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4040 * Philippe Waroquiers <philippe.waroquiers@eurocontrol.int> (1998)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4041 */
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
4042
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4043 static void Ada_getit __P((FILE *, char *));
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
4044
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4045 /* Once we are positioned after an "interesting" keyword, let's get
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4046 the real tag value necessary. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4047 static void
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4048 Ada_getit (inf, name_qualifier)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4049 FILE *inf;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4050 char *name_qualifier;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4051 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4052 register char *cp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4053 char *name;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4054 char c;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4055
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4056 while (!feof (inf))
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4057 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4058 dbp = skip_spaces (dbp);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4059 if (*dbp == '\0'
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4060 || (dbp[0] == '-' && dbp[1] == '-'))
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4061 {
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
4062 readline (&lb, inf);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4063 dbp = lb.buffer;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4064 }
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4065 switch (lowcase(*dbp))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4066 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4067 case 'b':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4068 if (nocase_tail ("body"))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4069 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4070 /* Skipping body of procedure body or package body or ....
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4071 resetting qualifier to body instead of spec. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4072 name_qualifier = "/b";
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4073 continue;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4074 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4075 break;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4076 case 't':
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4077 /* Skipping type of task type or protected type ... */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4078 if (nocase_tail ("type"))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4079 continue;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4080 break;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4081 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4082 if (*dbp == '"')
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4083 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4084 dbp += 1;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4085 for (cp = dbp; *cp != '\0' && *cp != '"'; cp++)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4086 continue;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4087 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4088 else
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4089 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4090 dbp = skip_spaces (dbp);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4091 for (cp = dbp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4092 (*cp != '\0'
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
4093 && (ISALPHA (*cp) || ISDIGIT (*cp) || *cp == '_' || *cp == '.'));
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4094 cp++)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4095 continue;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4096 if (cp == dbp)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4097 return;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4098 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4099 c = *cp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4100 *cp = '\0';
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4101 name = concat (dbp, name_qualifier, "");
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4102 *cp = c;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4103 make_tag (name, strlen (name), TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4104 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4105 free (name);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4106 if (c == '"')
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4107 dbp = cp + 1;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4108 return;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4109 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4110 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4111
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4112 static void
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4113 Ada_funcs (inf)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4114 FILE *inf;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4115 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4116 bool inquote = FALSE;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4117 bool skip_till_semicolumn = FALSE;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4118
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4119 LOOP_ON_INPUT_LINES (inf, lb, dbp)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4120 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4121 while (*dbp != '\0')
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4122 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4123 /* Skip a string i.e. "abcd". */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4124 if (inquote || (*dbp == '"'))
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4125 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4126 dbp = etags_strchr ((inquote) ? dbp : dbp+1, '"');
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4127 if (dbp != NULL)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4128 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4129 inquote = FALSE;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4130 dbp += 1;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4131 continue; /* advance char */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4132 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4133 else
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4134 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4135 inquote = TRUE;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4136 break; /* advance line */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4137 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4138 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4139
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4140 /* Skip comments. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4141 if (dbp[0] == '-' && dbp[1] == '-')
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4142 break; /* advance line */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4143
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4144 /* Skip character enclosed in single quote i.e. 'a'
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4145 and skip single quote starting an attribute i.e. 'Image. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4146 if (*dbp == '\'')
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4147 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4148 dbp++ ;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4149 if (*dbp != '\0')
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4150 dbp++;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4151 continue;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4152 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4153
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4154 if (skip_till_semicolumn)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4155 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4156 if (*dbp == ';')
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4157 skip_till_semicolumn = FALSE;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4158 dbp++;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4159 continue; /* advance char */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4160 }
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4161
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4162 /* Search for beginning of a token. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4163 if (!begtoken (*dbp))
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4164 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4165 dbp++;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4166 continue; /* advance char */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4167 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4168
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4169 /* We are at the beginning of a token. */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4170 switch (lowcase(*dbp))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4171 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4172 case 'f':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4173 if (!packages_only && nocase_tail ("function"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4174 Ada_getit (inf, "/f");
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4175 else
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4176 break; /* from switch */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4177 continue; /* advance char */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4178 case 'p':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4179 if (!packages_only && nocase_tail ("procedure"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4180 Ada_getit (inf, "/p");
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4181 else if (nocase_tail ("package"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4182 Ada_getit (inf, "/s");
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4183 else if (nocase_tail ("protected")) /* protected type */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4184 Ada_getit (inf, "/t");
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4185 else
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4186 break; /* from switch */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4187 continue; /* advance char */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4188
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4189 case 'u':
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4190 if (typedefs && !packages_only && nocase_tail ("use"))
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4191 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4192 /* when tagging types, avoid tagging use type Pack.Typename;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4193 for this, we will skip everything till a ; */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4194 skip_till_semicolumn = TRUE;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4195 continue; /* advance char */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4196 }
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4197
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4198 case 't':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4199 if (!packages_only && nocase_tail ("task"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4200 Ada_getit (inf, "/k");
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4201 else if (typedefs && !packages_only && nocase_tail ("type"))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4202 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4203 Ada_getit (inf, "/t");
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4204 while (*dbp != '\0')
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4205 dbp += 1;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4206 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4207 else
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4208 break; /* from switch */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4209 continue; /* advance char */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4210 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4211
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4212 /* Look for the end of the token. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4213 while (!endtoken (*dbp))
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4214 dbp++;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4215
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4216 } /* advance char */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4217 } /* advance line */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4218 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4219
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4220
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4221 /*
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4222 * Unix and microcontroller assembly tag handling
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4223 * Labels: /^[a-zA-Z_.$][a-zA_Z0-9_.$]*[: ^I^J]/
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4224 * Idea by Bob Weiner, Motorola Inc. (1994)
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4225 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4226 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4227 Asm_labels (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4228 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4229 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4230 register char *cp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4231
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4232 LOOP_ON_INPUT_LINES (inf, lb, cp)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4233 {
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4234 /* If first char is alphabetic or one of [_.$], test for colon
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4235 following identifier. */
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
4236 if (ISALPHA (*cp) || *cp == '_' || *cp == '.' || *cp == '$')
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4237 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4238 /* Read past label. */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4239 cp++;
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
4240 while (ISALNUM (*cp) || *cp == '_' || *cp == '.' || *cp == '$')
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4241 cp++;
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
4242 if (*cp == ':' || iswhite (*cp))
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4243 /* Found end of label, so copy it and add it to the table. */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4244 make_tag (lb.buffer, cp - lb.buffer, TRUE,
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
4245 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4246 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4247 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4248 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4249
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4250
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4251 /*
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4252 * Perl support
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4253 * Perl sub names: /^sub[ \t\n]+[^ \t\n{]+/
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4254 * Perl variable names: /^(my|local).../
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4255 * Original code by Bart Robinson <lomew@cs.utah.edu> (1995)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4256 * Additions by Michael Ernst <mernst@alum.mit.edu> (1997)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4257 * Ideas by Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> (2001)
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4258 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4259 static void
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4260 Perl_functions (inf)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4261 FILE *inf;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4262 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4263 char *package = savestr ("main"); /* current package name */
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4264 register char *cp;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4265
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4266 LOOP_ON_INPUT_LINES (inf, lb, cp)
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4267 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4268 skip_spaces(cp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4269
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4270 if (LOOKING_AT (cp, "package"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4271 {
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4272 free (package);
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4273 get_tag (cp, &package);
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4274 }
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4275 else if (LOOKING_AT (cp, "sub"))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4276 {
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4277 char *pos;
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4278 char *sp = cp;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4279
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4280 while (!notinname (*cp))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4281 cp++;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4282 if (cp == sp)
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4283 continue; /* nothing found */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4284 if ((pos = etags_strchr (sp, ':')) != NULL
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4285 && pos < cp && pos[1] == ':')
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4286 /* The name is already qualified. */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4287 make_tag (sp, cp - sp, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4288 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4289 else
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4290 /* Qualify it. */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4291 {
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4292 char savechar, *name;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4293
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4294 savechar = *cp;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4295 *cp = '\0';
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4296 name = concat (package, "::", sp);
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4297 *cp = savechar;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4298 make_tag (name, strlen(name), TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4299 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4300 free (name);
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4301 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4302 }
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4303 else if (globals) /* only if we are tagging global vars */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4304 {
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4305 /* Skip a qualifier, if any. */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4306 bool qual = LOOKING_AT (cp, "my") || LOOKING_AT (cp, "local");
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4307 /* After "my" or "local", but before any following paren or space. */
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4308 char *varstart = cp;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4309
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4310 if (qual /* should this be removed? If yes, how? */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4311 && (*cp == '$' || *cp == '@' || *cp == '%'))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4312 {
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4313 varstart += 1;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4314 do
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4315 cp++;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4316 while (ISALNUM (*cp) || *cp == '_');
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4317 }
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4318 else if (qual)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4319 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4320 /* Should be examining a variable list at this point;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4321 could insist on seeing an open parenthesis. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4322 while (*cp != '\0' && *cp != ';' && *cp != '=' && *cp != ')')
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4323 cp++;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4324 }
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4325 else
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4326 continue;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4327
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4328 make_tag (varstart, cp - varstart, FALSE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4329 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4330 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4331 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4332 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4333
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4334
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4335 /*
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4336 * Python support
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4337 * Look for /^[\t]*def[ \t\n]+[^ \t\n(:]+/ or /^class[ \t\n]+[^ \t\n(:]+/
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4338 * Idea by Eric S. Raymond <esr@thyrsus.com> (1997)
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4339 * More ideas by seb bacon <seb@jamkit.com> (2002)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4340 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4341 static void
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4342 Python_functions (inf)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4343 FILE *inf;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4344 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4345 register char *cp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4346
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4347 LOOP_ON_INPUT_LINES (inf, lb, cp)
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4348 {
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4349 cp = skip_spaces (cp);
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4350 if (LOOKING_AT (cp, "def") || LOOKING_AT (cp, "class"))
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4351 {
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4352 char *name = cp;
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4353 while (!notinname (*cp) && *cp != ':')
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4354 cp++;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4355 make_tag (name, cp - name, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4356 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4357 }
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4358 }
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4359 }
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4360
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4361
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4362 /*
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4363 * PHP support
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4364 * Look for:
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4365 * - /^[ \t]*function[ \t\n]+[^ \t\n(]+/
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4366 * - /^[ \t]*class[ \t\n]+[^ \t\n]+/
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4367 * - /^[ \t]*define\(\"[^\"]+/
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4368 * Only with --members:
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4369 * - /^[ \t]*var[ \t\n]+\$[^ \t\n=;]/
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4370 * Idea by Diez B. Roggisch (2001)
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4371 */
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4372 static void
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4373 PHP_functions (inf)
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4374 FILE *inf;
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4375 {
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4376 register char *cp, *name;
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4377 bool search_identifier = FALSE;
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4378
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4379 LOOP_ON_INPUT_LINES (inf, lb, cp)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4380 {
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4381 cp = skip_spaces (cp);
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4382 name = cp;
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4383 if (search_identifier
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4384 && *cp != '\0')
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4385 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4386 while (!notinname (*cp))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4387 cp++;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4388 make_tag (name, cp - name, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4389 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4390 search_identifier = FALSE;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4391 }
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4392 else if (LOOKING_AT (cp, "function"))
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4393 {
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4394 if(*cp == '&')
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4395 cp = skip_spaces (cp+1);
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4396 if(*cp != '\0')
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4397 {
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4398 name = cp;
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4399 while (!notinname (*cp))
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4400 cp++;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4401 make_tag (name, cp - name, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4402 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4403 }
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4404 else
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4405 search_identifier = TRUE;
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4406 }
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4407 else if (LOOKING_AT (cp, "class"))
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4408 {
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4409 if (*cp != '\0')
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4410 {
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4411 name = cp;
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4412 while (*cp != '\0' && !iswhite (*cp))
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4413 cp++;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4414 make_tag (name, cp - name, FALSE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4415 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4416 }
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4417 else
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4418 search_identifier = TRUE;
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4419 }
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4420 else if (strneq (cp, "define", 6)
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4421 && (cp = skip_spaces (cp+6))
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4422 && *cp++ == '('
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4423 && (*cp == '"' || *cp == '\''))
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4424 {
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4425 char quote = *cp++;
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4426 name = cp;
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4427 while (*cp != quote && *cp != '\0')
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4428 cp++;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4429 make_tag (name, cp - name, FALSE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4430 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4431 }
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4432 else if (members
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4433 && LOOKING_AT (cp, "var")
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4434 && *cp == '$')
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4435 {
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4436 name = cp;
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4437 while (!notinname(*cp))
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4438 cp++;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4439 make_tag (name, cp - name, FALSE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4440 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4441 }
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4442 }
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4443 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4444
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4445
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4446 /*
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4447 * Cobol tag functions
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4448 * We could look for anything that could be a paragraph name.
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4449 * i.e. anything that starts in column 8 is one word and ends in a full stop.
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4450 * Idea by Corny de Souza (1993)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4451 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4452 static void
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4453 Cobol_paragraphs (inf)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4454 FILE *inf;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4455 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4456 register char *bp, *ep;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4457
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4458 LOOP_ON_INPUT_LINES (inf, lb, bp)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4459 {
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4460 if (lb.len < 9)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4461 continue;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4462 bp += 8;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4463
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4464 /* If eoln, compiler option or comment ignore whole line. */
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
4465 if (bp[-1] != ' ' || !ISALNUM (bp[0]))
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4466 continue;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4467
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
4468 for (ep = bp; ISALNUM (*ep) || *ep == '-'; ep++)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4469 continue;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4470 if (*ep++ == '.')
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4471 make_tag (bp, ep - bp, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4472 lb.buffer, ep - lb.buffer + 1, lineno, linecharno);
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4473 }
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4474 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4475
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4476
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4477 /*
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4478 * Makefile support
45918
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
4479 * Ideas by Assar Westerlund <assar@sics.se> (2001)
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4480 */
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4481 static void
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4482 Makefile_targets (inf)
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4483 FILE *inf;
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4484 {
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4485 register char *bp;
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4486
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4487 LOOP_ON_INPUT_LINES (inf, lb, bp)
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4488 {
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4489 if (*bp == '\t' || *bp == '#')
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4490 continue;
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4491 while (*bp != '\0' && *bp != '=' && *bp != ':')
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4492 bp++;
45918
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
4493 if (*bp == ':' || (globals && *bp == '='))
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4494 make_tag (lb.buffer, bp - lb.buffer, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4495 lb.buffer, bp - lb.buffer + 1, lineno, linecharno);
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4496 }
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4497 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4498
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4499
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4500 /*
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4501 * Pascal parsing
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4502 * Original code by Mosur K. Mohan (1989)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4503 *
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4504 * Locates tags for procedures & functions. Doesn't do any type- or
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4505 * var-definitions. It does look for the keyword "extern" or
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4506 * "forward" immediately following the procedure statement; if found,
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4507 * the tag is skipped.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4508 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4509 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4510 Pascal_functions (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4511 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4512 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4513 linebuffer tline; /* mostly copied from C_entries */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4514 long save_lcno;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4515 int save_lineno, namelen, taglen;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4516 char c, *name;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4517
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4518 bool /* each of these flags is TRUE iff: */
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4519 incomment, /* point is inside a comment */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4520 inquote, /* point is inside '..' string */
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4521 get_tagname, /* point is after PROCEDURE/FUNCTION
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4522 keyword, so next item = potential tag */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4523 found_tag, /* point is after a potential tag */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4524 inparms, /* point is within parameter-list */
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4525 verify_tag; /* point has passed the parm-list, so the
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4526 next token will determine whether this
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4527 is a FORWARD/EXTERN to be ignored, or
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4528 whether it is a real tag */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4529
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4530 save_lcno = save_lineno = namelen = taglen = 0; /* keep compiler quiet */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4531 name = NULL; /* keep compiler quiet */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4532 dbp = lb.buffer;
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4533 *dbp = '\0';
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4534 linebuffer_init (&tline);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4535
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4536 incomment = inquote = FALSE;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4537 found_tag = FALSE; /* have a proc name; check if extern */
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4538 get_tagname = FALSE; /* found "procedure" keyword */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4539 inparms = FALSE; /* found '(' after "proc" */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4540 verify_tag = FALSE; /* check if "extern" is ahead */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4541
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4542
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4543 while (!feof (inf)) /* long main loop to get next char */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4544 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4545 c = *dbp++;
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
4546 if (c == '\0') /* if end of line */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4547 {
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
4548 readline (&lb, inf);
15243
c024dca549c5 * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
Francesco Potortì <pot@gnu.org>
parents: 14982
diff changeset
4549 dbp = lb.buffer;
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
4550 if (*dbp == '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4551 continue;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4552 if (!((found_tag && verify_tag)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4553 || get_tagname))
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4554 c = *dbp++; /* only if don't need *dbp pointing
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4555 to the beginning of the name of
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4556 the procedure or function */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4557 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4558 if (incomment)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4559 {
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4560 if (c == '}') /* within { } comments */
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4561 incomment = FALSE;
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4562 else if (c == '*' && *dbp == ')') /* within (* *) comments */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4563 {
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4564 dbp++;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4565 incomment = FALSE;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4566 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4567 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4568 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4569 else if (inquote)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4570 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4571 if (c == '\'')
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4572 inquote = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4573 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4574 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
4575 else
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4576 switch (c)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4577 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4578 case '\'':
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4579 inquote = TRUE; /* found first quote */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4580 continue;
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4581 case '{': /* found open { comment */
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4582 incomment = TRUE;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4583 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4584 case '(':
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4585 if (*dbp == '*') /* found open (* comment */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4586 {
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4587 incomment = TRUE;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4588 dbp++;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4589 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4590 else if (found_tag) /* found '(' after tag, i.e., parm-list */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4591 inparms = TRUE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4592 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4593 case ')': /* end of parms list */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4594 if (inparms)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4595 inparms = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4596 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4597 case ';':
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4598 if (found_tag && !inparms) /* end of proc or fn stmt */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4599 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4600 verify_tag = TRUE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4601 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4602 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4603 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4604 }
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4605 if (found_tag && verify_tag && (*dbp != ' '))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4606 {
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4607 /* Check if this is an "extern" declaration. */
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4608 if (*dbp == '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4609 continue;
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4610 if (lowcase (*dbp == 'e'))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4611 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4612 if (nocase_tail ("extern")) /* superfluous, really! */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4613 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4614 found_tag = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4615 verify_tag = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4616 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4617 }
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4618 else if (lowcase (*dbp) == 'f')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4619 {
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
4620 if (nocase_tail ("forward")) /* check for forward reference */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4621 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4622 found_tag = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4623 verify_tag = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4624 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4625 }
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4626 if (found_tag && verify_tag) /* not external proc, so make tag */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4627 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4628 found_tag = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4629 verify_tag = FALSE;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4630 make_tag (name, namelen, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4631 tline.buffer, taglen, save_lineno, save_lcno);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4632 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4633 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4634 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4635 if (get_tagname) /* grab name of proc or fn */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4636 {
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4637 char *cp;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4638
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4639 if (*dbp == '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4640 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4641
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4642 /* Find block name. */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4643 for (cp = dbp + 1; *cp != '\0' && !endtoken (*cp); cp++)
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4644 continue;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4645
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4646 /* Save all values for later tagging. */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4647 linebuffer_setlen (&tline, lb.len);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4648 strcpy (tline.buffer, lb.buffer);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4649 save_lineno = lineno;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4650 save_lcno = linecharno;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4651 name = tline.buffer + (dbp - lb.buffer);
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4652 namelen = cp - dbp;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4653 taglen = cp - lb.buffer + 1;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4654
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
4655 dbp = cp; /* set dbp to e-o-token */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4656 get_tagname = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4657 found_tag = TRUE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4658 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4659
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4660 /* And proceed to check for "extern". */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4661 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
4662 else if (!incomment && !inquote && !found_tag)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4663 {
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4664 /* Check for proc/fn keywords. */
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
4665 switch (lowcase (c))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4666 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4667 case 'p':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4668 if (nocase_tail ("rocedure")) /* c = 'p', dbp has advanced */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4669 get_tagname = TRUE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4670 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4671 case 'f':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4672 if (nocase_tail ("unction"))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4673 get_tagname = TRUE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4674 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4675 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4676 }
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4677 } /* while not eof */
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
4678
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4679 free (tline.buffer);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4680 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4681
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4682
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4683 /*
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4684 * Lisp tag functions
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
4685 * look for (def or (DEF, quote or QUOTE
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4686 */
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
4687
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4688 static void L_getit __P((void));
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4689
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4690 static void
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4691 L_getit ()
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4692 {
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
4693 if (*dbp == '\'') /* Skip prefix quote */
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
4694 dbp++;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4695 else if (*dbp == '(')
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
4696 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4697 dbp++;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4698 /* Try to skip "(quote " */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4699 if (!LOOKING_AT (dbp, "quote") && !LOOKING_AT (dbp, "QUOTE"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4700 /* Ok, then skip "(" before name in (defstruct (foo)) */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4701 dbp = skip_spaces (dbp);
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
4702 }
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4703 get_tag (dbp, NULL);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4704 }
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4705
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4706 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4707 Lisp_functions (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4708 FILE *inf;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4709 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4710 LOOP_ON_INPUT_LINES (inf, lb, dbp)
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4711 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4712 if (dbp[0] != '(')
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4713 continue;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4714
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4715 if (strneq (dbp+1, "def", 3) || strneq (dbp+1, "DEF", 3))
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4716 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4717 dbp = skip_non_spaces (dbp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4718 dbp = skip_spaces (dbp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4719 L_getit ();
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4720 }
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4721 else
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4722 {
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4723 /* Check for (foo::defmumble name-defined ... */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4724 do
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4725 dbp++;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4726 while (!notinname (*dbp) && *dbp != ':');
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4727 if (*dbp == ':')
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4728 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4729 do
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4730 dbp++;
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4731 while (*dbp == ':');
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4732
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4733 if (strneq (dbp, "def", 3) || strneq (dbp, "DEF", 3))
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4734 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4735 dbp = skip_non_spaces (dbp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4736 dbp = skip_spaces (dbp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4737 L_getit ();
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4738 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4739 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4740 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4741 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4742 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4743
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4744
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4745 /*
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4746 * Postscript tag functions
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4747 * Just look for lines where the first character is '/'
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4748 * Also look at "defineps" for PSWrap
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4749 * Ideas by:
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4750 * Richard Mlynarik <mly@adoc.xerox.com> (1997)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4751 * Masatake Yamato <masata-y@is.aist-nara.ac.jp> (1999)
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4752 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4753 static void
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4754 Postscript_functions (inf)
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4755 FILE *inf;
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4756 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4757 register char *bp, *ep;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4758
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4759 LOOP_ON_INPUT_LINES (inf, lb, bp)
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4760 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4761 if (bp[0] == '/')
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4762 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4763 for (ep = bp+1;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4764 *ep != '\0' && *ep != ' ' && *ep != '{';
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4765 ep++)
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4766 continue;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4767 make_tag (bp, ep - bp, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4768 lb.buffer, ep - lb.buffer + 1, lineno, linecharno);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4769 }
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4770 else if (LOOKING_AT (bp, "defineps"))
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4771 get_tag (bp, NULL);
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4772 }
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4773 }
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4774
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4775
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4776 /*
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4777 * Scheme tag functions
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4778 * look for (def... xyzzy
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4779 * (def... (xyzzy
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4780 * (def ... ((...(xyzzy ....
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4781 * (set! xyzzy
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4782 * Original code by Ken Haase (1985?)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4783 */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4784
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4785 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4786 Scheme_functions (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4787 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4788 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4789 register char *bp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4790
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4791 LOOP_ON_INPUT_LINES (inf, lb, bp)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4792 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4793 if (strneq (bp, "(def", 4) || strneq (bp, "(DEF", 4))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4794 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4795 bp = skip_non_spaces (bp+4);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4796 /* Skip over open parens and white space */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4797 while (notinname (*bp))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4798 bp++;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4799 get_tag (bp, NULL);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4800 }
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4801 if (LOOKING_AT (bp, "(SET!") || LOOKING_AT (bp, "(set!"))
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4802 get_tag (bp, NULL);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4803 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4804 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4805
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4806
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4807 /* Find tags in TeX and LaTeX input files. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4808
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4809 /* TEX_toktab is a table of TeX control sequences that define tags.
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4810 * Each entry records one such control sequence.
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4811 *
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4812 * Original code from who knows whom.
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4813 * Ideas by:
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4814 * Stefan Monnier (2002)
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4815 */
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4816
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4817 static linebuffer *TEX_toktab = NULL; /* Table with tag tokens */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4818
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4819 /* Default set of control sequences to put into TEX_toktab.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4820 The value of environment var TEXTAGS is prepended to this. */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
4821 static char *TEX_defenv = "\
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
4822 :chapter:section:subsection:subsubsection:eqno:label:ref:cite:bibitem\
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4823 :part:appendix:entry:index:def\
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4824 :newcommand:renewcommand:newenvironment:renewenvironment";
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4825
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4826 static void TEX_mode __P((FILE *));
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4827 static void TEX_decode_env __P((char *, char *));
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4828
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
4829 static char TEX_esc = '\\';
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
4830 static char TEX_opgrp = '{';
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
4831 static char TEX_clgrp = '}';
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4832
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4833 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4834 * TeX/LaTeX scanning loop.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4835 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4836 static void
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4837 TeX_commands (inf)
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4838 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4839 {
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4840 char *cp;
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4841 linebuffer *key;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4842
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4843 /* Select either \ or ! as escape character. */
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4844 TEX_mode (inf);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4845
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4846 /* Initialize token table once from environment. */
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4847 if (TEX_toktab == NULL)
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4848 TEX_decode_env ("TEXTAGS", TEX_defenv);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4849
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4850 LOOP_ON_INPUT_LINES (inf, lb, cp)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4851 {
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4852 /* Look at each TEX keyword in line. */
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4853 for (;;)
1026
cc96e2df9b71 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 774
diff changeset
4854 {
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4855 /* Look for a TEX escape. */
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4856 while (*cp++ != TEX_esc)
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4857 if (cp[-1] == '\0' || cp[-1] == '%')
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4858 goto tex_next_line;
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4859
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4860 for (key = TEX_toktab; key->buffer != NULL; key++)
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4861 if (strneq (cp, key->buffer, key->len))
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4862 {
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4863 register char *p;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4864 int namelen, linelen;
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4865 bool opgrp = FALSE;
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4866
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4867 cp = skip_spaces (cp + key->len);
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4868 if (*cp == TEX_opgrp)
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4869 {
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4870 opgrp = TRUE;
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4871 cp++;
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4872 }
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4873 for (p = cp;
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4874 (!iswhite (*p) && *p != '#' &&
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4875 *p != TEX_opgrp && *p != TEX_clgrp);
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4876 p++)
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4877 continue;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4878 namelen = p - cp;
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4879 linelen = lb.len;
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4880 if (!opgrp || *p == TEX_clgrp)
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4881 {
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4882 while (*p != '\0' && *p != TEX_opgrp && *p != TEX_clgrp)
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4883 *p++;
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4884 linelen = p - lb.buffer + 1;
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4885 }
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4886 make_tag (cp, namelen, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4887 lb.buffer, linelen, lineno, linecharno);
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4888 goto tex_next_line; /* We only tag a line once */
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4889 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4890 }
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4891 tex_next_line:
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4892 ;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4893 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4894 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4895
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4896 #define TEX_LESC '\\'
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4897 #define TEX_SESC '!'
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4898
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4899 /* Figure out whether TeX's escapechar is '\\' or '!' and set grouping
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4900 chars accordingly. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4901 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4902 TEX_mode (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4903 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4904 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4905 int c;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4906
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4907 while ((c = getc (inf)) != EOF)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4908 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4909 /* Skip to next line if we hit the TeX comment char. */
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4910 if (c == '%')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4911 while (c != '\n')
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4912 c = getc (inf);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4913 else if (c == TEX_LESC || c == TEX_SESC )
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4914 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4915 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4916
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4917 if (c == TEX_LESC)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4918 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4919 TEX_esc = TEX_LESC;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4920 TEX_opgrp = '{';
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4921 TEX_clgrp = '}';
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4922 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4923 else
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4924 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4925 TEX_esc = TEX_SESC;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4926 TEX_opgrp = '<';
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4927 TEX_clgrp = '>';
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4928 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4929 /* If the input file is compressed, inf is a pipe, and rewind may fail.
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4930 No attempt is made to correct the situation. */
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4931 rewind (inf);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4932 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4933
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4934 /* Read environment and prepend it to the default string.
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4935 Build token table. */
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4936 static void
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4937 TEX_decode_env (evarname, defenv)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4938 char *evarname;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4939 char *defenv;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4940 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4941 register char *env, *p;
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4942 int i, len;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4943
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4944 /* Append default string to environment. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4945 env = getenv (evarname);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4946 if (!env)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4947 env = defenv;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4948 else
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4949 {
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4950 char *oldenv = env;
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4951 env = concat (oldenv, defenv, "");
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4952 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4953
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4954 /* Allocate a token table */
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4955 for (len = 1, p = env; p;)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4956 if ((p = etags_strchr (p, ':')) && *++p != '\0')
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4957 len++;
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4958 TEX_toktab = xnew (len, linebuffer);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4959
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4960 /* Unpack environment string into token table. Be careful about */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4961 /* zero-length strings (leading ':', "::" and trailing ':') */
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4962 for (i = 0; *env != '\0';)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4963 {
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
4964 p = etags_strchr (env, ':');
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4965 if (!p) /* End of environment string. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4966 p = env + strlen (env);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4967 if (p - env > 0)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4968 { /* Only non-zero strings. */
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4969 TEX_toktab[i].buffer = savenstr (env, p - env);
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4970 TEX_toktab[i].len = p - env;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4971 i++;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4972 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4973 if (*p)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4974 env = p + 1;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4975 else
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4976 {
45654
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4977 TEX_toktab[i].buffer = NULL; /* Mark end of table. */
816b7344d062 (TeX_commands): Skip comments.
Francesco Potortì <pot@gnu.org>
parents: 45643
diff changeset
4978 TEX_toktab[i].len = 0;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4979 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4980 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4981 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4982 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4983
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4984
28663
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4985 /* Texinfo support. Dave Love, Mar. 2000. */
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4986 static void
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4987 Texinfo_nodes (inf)
28663
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4988 FILE * inf;
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4989 {
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4990 char *cp, *start;
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4991 LOOP_ON_INPUT_LINES (inf, lb, cp)
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4992 if (LOOKING_AT (cp, "@node"))
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4993 {
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4994 start = cp;
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4995 while (*cp != '\0' && *cp != ',')
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4996 cp++;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4997 make_tag (start, cp - start, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
4998 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4999 }
28663
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
5000 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5001
28663
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
5002
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5003 /* Similar to LOOKING_AT but does not use notinname, does not skip */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5004 #define LOOKING_AT_NOCASE(cp, kw) /* kw is a constant string */ \
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5005 (strncaseeq ((cp), kw, sizeof(kw)-1) /* cp points at kw */ \
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5006 && ((cp) += sizeof(kw)-1)) /* skip spaces */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5007
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5008 /*
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5009 * HTML support.
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5010 * Contents of <title>, <h1>, <h2>, <h3> are tags.
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5011 * Contents of <a name=xxx> are tags with name xxx.
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5012 *
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5013 * Francesco Potort́, 2002.
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5014 */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5015 static void
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5016 HTML_labels (inf)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5017 FILE * inf;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5018 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5019 bool getnext = FALSE; /* next text outside of HTML tags is a tag */
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5020 bool skiptag = FALSE; /* skip to the end of the current HTML tag */
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5021 bool intag = FALSE; /* inside an html tag, looking for ID= */
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5022 bool inanchor = FALSE; /* when INTAG, is an anchor, look for NAME= */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5023 char *end;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5024
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5025
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5026 linebuffer_setlen (&token_name, 0); /* no name in buffer */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5027
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5028 LOOP_ON_INPUT_LINES (inf, lb, dbp)
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5029 for (;;) /* loop on the same line */
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5030 {
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5031 if (skiptag) /* skip HTML tag */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5032 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5033 while (*dbp != '\0' && *dbp != '>')
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5034 dbp++;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5035 if (*dbp == '>')
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5036 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5037 dbp += 1;
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5038 skiptag = FALSE;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5039 continue; /* look on the same line */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5040 }
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5041 break; /* go to next line */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5042 }
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5043
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5044 else if (intag) /* look for "name=" or "id=" */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5045 {
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5046 while (*dbp != '\0' && *dbp != '>'
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5047 && lowcase (*dbp) != 'n' && lowcase (*dbp) != 'i')
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5048 dbp++;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5049 if (*dbp == '\0')
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5050 break; /* go to next line */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5051 if (*dbp == '>')
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5052 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5053 dbp += 1;
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5054 intag = FALSE;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5055 continue; /* look on the same line */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5056 }
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5057 if ((inanchor && LOOKING_AT_NOCASE (dbp, "name="))
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5058 || LOOKING_AT_NOCASE (dbp, "id="))
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5059 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5060 bool quoted = (dbp[0] == '"');
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5061
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5062 if (quoted)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5063 for (end = ++dbp; *end != '\0' && *end != '"'; end++)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5064 continue;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5065 else
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5066 for (end = dbp; *end != '\0' && intoken (*end); end++)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5067 continue;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5068 linebuffer_setlen (&token_name, end - dbp);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5069 strncpy (token_name.buffer, dbp, end - dbp);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5070 token_name.buffer[end - dbp] = '\0';
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5071
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5072 dbp = end;
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5073 intag = FALSE; /* we found what we looked for */
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5074 skiptag = TRUE; /* skip to the end of the tag */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5075 getnext = TRUE; /* then grab the text */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5076 continue; /* look on the same line */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5077 }
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5078 dbp += 1;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5079 }
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5080
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5081 else if (getnext) /* grab next tokens and tag them */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5082 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5083 dbp = skip_spaces (dbp);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5084 if (*dbp == '\0')
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5085 break; /* go to next line */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5086 if (*dbp == '<')
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5087 {
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5088 intag = TRUE;
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5089 inanchor = (lowcase (dbp[1]) == 'a' && !intoken (dbp[2]));
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5090 continue; /* look on the same line */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5091 }
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5092
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5093 for (end = dbp + 1; *end != '\0' && *end != '<'; end++)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5094 continue;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5095 make_tag (token_name.buffer, token_name.len, TRUE,
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5096 dbp, end - dbp, lineno, linecharno);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5097 linebuffer_setlen (&token_name, 0); /* no name in buffer */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5098 getnext = FALSE;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5099 break; /* go to next line */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5100 }
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5101
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5102 else /* look for an interesting HTML tag */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5103 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5104 while (*dbp != '\0' && *dbp != '<')
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5105 dbp++;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5106 if (*dbp == '\0')
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5107 break; /* go to next line */
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5108 intag = TRUE;
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5109 if (lowcase (dbp[1]) == 'a' && !intoken (dbp[2]))
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5110 {
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5111 inanchor = TRUE;
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5112 continue; /* look on the same line */
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5113 }
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5114 else if (LOOKING_AT_NOCASE (dbp, "<title>")
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5115 || LOOKING_AT_NOCASE (dbp, "<h1>")
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5116 || LOOKING_AT_NOCASE (dbp, "<h2>")
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5117 || LOOKING_AT_NOCASE (dbp, "<h3>"))
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5118 {
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5119 intag = FALSE;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5120 getnext = TRUE;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5121 continue; /* look on the same line */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5122 }
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5123 dbp += 1;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5124 }
47103
4098bad57f21 (C_entries): Corrected a problem with const C++ funcs.
Francesco Potortì <pot@gnu.org>
parents: 47081
diff changeset
5125 }
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5126 }
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5127
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5128
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5129 /*
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5130 * Prolog support
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5131 *
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5132 * Assumes that the predicate or rule starts at column 0.
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5133 * Only the first clause of a predicate or rule is added.
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5134 * Original code by Sunichirou Sugou (1989)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5135 * Rewritten by Anders Lindgren (1996)
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5136 */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5137 static int prolog_pr __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5138 static void prolog_skip_comment __P((linebuffer *, FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5139 static int prolog_atom __P((char *, int));
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5140
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5141 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
5142 Prolog_functions (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
5143 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5144 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5145 char *cp, *last;
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5146 int len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5147 int allocated;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5148
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5149 allocated = 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5150 len = 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5151 last = NULL;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5152
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5153 LOOP_ON_INPUT_LINES (inf, lb, cp)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5154 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5155 if (cp[0] == '\0') /* Empty line */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5156 continue;
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
5157 else if (iswhite (cp[0])) /* Not a predicate */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5158 continue;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5159 else if (cp[0] == '/' && cp[1] == '*') /* comment. */
16573
4ed8667d6bd9 Wed Nov 13 17:51:29 1996 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 16540
diff changeset
5160 prolog_skip_comment (&lb, inf);
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5161 else if ((len = prolog_pr (cp, last)) > 0)
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5162 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5163 /* Predicate or rule. Store the function name so that we
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5164 only generate a tag for the first clause. */
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5165 if (last == NULL)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5166 last = xnew(len + 1, char);
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5167 else if (len + 1 > allocated)
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5168 xrnew (last, len + 1, char);
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5169 allocated = len + 1;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5170 strncpy (last, cp, len);
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5171 last[len] = '\0';
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5172 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5173 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5174 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5175
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5176
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5177 static void
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5178 prolog_skip_comment (plb, inf)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5179 linebuffer *plb;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
5180 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5181 {
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5182 char *cp;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5183
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5184 do
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5185 {
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5186 for (cp = plb->buffer; *cp != '\0'; cp++)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5187 if (cp[0] == '*' && cp[1] == '/')
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5188 return;
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5189 readline (plb, inf);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5190 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5191 while (!feof(inf));
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5192 }
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5193
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5194 /*
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5195 * A predicate or rule definition is added if it matches:
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5196 * <beginning of line><Prolog Atom><whitespace>(
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5197 * or <beginning of line><Prolog Atom><whitespace>:-
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5198 *
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5199 * It is added to the tags database if it doesn't match the
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5200 * name of the previous clause header.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5201 *
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5202 * Return the size of the name of the predicate or rule, or 0 if no
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5203 * header was found.
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5204 */
27658
5980f19581dc (pfnote, new_pfnote, C_entries, prolog_pred, erlang_func): Add
Dave Love <fx@gnu.org>
parents: 27595
diff changeset
5205 static int
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5206 prolog_pr (s, last)
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5207 char *s;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5208 char *last; /* Name of last clause. */
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5209 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5210 int pos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5211 int len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5212
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5213 pos = prolog_atom (s, 0);
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5214 if (pos < 1)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5215 return 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5216
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5217 len = pos;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5218 pos = skip_spaces (s + pos) - s;
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5219
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5220 if ((s[pos] == '.'
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5221 || (s[pos] == '(' && (pos += 1))
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5222 || (s[pos] == ':' && s[pos + 1] == '-' && (pos += 2)))
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5223 && (last == NULL /* save only the first clause */
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5224 || len != strlen (last)
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5225 || !strneq (s, last, len)))
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5226 {
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5227 make_tag (s, len, TRUE, s, pos, lineno, linecharno);
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5228 return len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5229 }
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5230 else
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
5231 return 0;
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5232 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5233
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5234 /*
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5235 * Consume a Prolog atom.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5236 * Return the number of bytes consumed, or -1 if there was an error.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5237 *
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5238 * A prolog atom, in this context, could be one of:
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5239 * - An alphanumeric sequence, starting with a lower case letter.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5240 * - A quoted arbitrary string. Single quotes can escape themselves.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5241 * Backslash quotes everything.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5242 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5243 static int
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5244 prolog_atom (s, pos)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5245 char *s;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5246 int pos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5247 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5248 int origpos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5249
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5250 origpos = pos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5251
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
5252 if (ISLOWER(s[pos]) || (s[pos] == '_'))
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5253 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5254 /* The atom is unquoted. */
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5255 pos++;
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
5256 while (ISALNUM(s[pos]) || (s[pos] == '_'))
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5257 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5258 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5259 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5260 return pos - origpos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5261 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5262 else if (s[pos] == '\'')
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5263 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5264 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5265
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
5266 for (;;)
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5267 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5268 if (s[pos] == '\'')
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5269 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5270 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5271 if (s[pos] != '\'')
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5272 break;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5273 pos++; /* A double quote */
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5274 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5275 else if (s[pos] == '\0')
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5276 /* Multiline quoted atoms are ignored. */
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5277 return -1;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5278 else if (s[pos] == '\\')
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5279 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5280 if (s[pos+1] == '\0')
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5281 return -1;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5282 pos += 2;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5283 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5284 else
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5285 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5286 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5287 return pos - origpos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5288 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5289 else
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5290 return -1;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5291 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5292
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5293
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5294 /*
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5295 * Support for Erlang
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5296 *
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5297 * Generates tags for functions, defines, and records.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5298 * Assumes that Erlang functions start at column 0.
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5299 * Original code by Anders Lindgren (1996)
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5300 */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5301 static int erlang_func __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5302 static void erlang_attribute __P((char *));
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5303 static int erlang_atom __P((char *));
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5304
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5305 static void
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5306 Erlang_functions (inf)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5307 FILE *inf;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5308 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5309 char *cp, *last;
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5310 int len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5311 int allocated;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5312
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5313 allocated = 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5314 len = 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5315 last = NULL;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5316
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5317 LOOP_ON_INPUT_LINES (inf, lb, cp)
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5318 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5319 if (cp[0] == '\0') /* Empty line */
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5320 continue;
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
5321 else if (iswhite (cp[0])) /* Not function nor attribute */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5322 continue;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5323 else if (cp[0] == '%') /* comment */
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5324 continue;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5325 else if (cp[0] == '"') /* Sometimes, strings start in column one */
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5326 continue;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5327 else if (cp[0] == '-') /* attribute, e.g. "-define" */
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5328 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5329 erlang_attribute (cp);
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5330 last = NULL;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5331 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5332 else if ((len = erlang_func (cp, last)) > 0)
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5333 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5334 /*
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5335 * Function. Store the function name so that we only
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5336 * generates a tag for the first clause.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5337 */
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5338 if (last == NULL)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5339 last = xnew (len + 1, char);
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5340 else if (len + 1 > allocated)
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5341 xrnew (last, len + 1, char);
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5342 allocated = len + 1;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5343 strncpy (last, cp, len);
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5344 last[len] = '\0';
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5345 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5346 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5347 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5348
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5349
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5350 /*
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5351 * A function definition is added if it matches:
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5352 * <beginning of line><Erlang Atom><whitespace>(
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5353 *
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5354 * It is added to the tags database if it doesn't match the
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5355 * name of the previous clause header.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5356 *
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5357 * Return the size of the name of the function, or 0 if no function
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5358 * was found.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5359 */
27658
5980f19581dc (pfnote, new_pfnote, C_entries, prolog_pred, erlang_func): Add
Dave Love <fx@gnu.org>
parents: 27595
diff changeset
5360 static int
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5361 erlang_func (s, last)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5362 char *s;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5363 char *last; /* Name of last clause. */
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5364 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5365 int pos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5366 int len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5367
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5368 pos = erlang_atom (s);
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5369 if (pos < 1)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5370 return 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5371
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5372 len = pos;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5373 pos = skip_spaces (s + pos) - s;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5374
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5375 /* Save only the first clause. */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5376 if (s[pos++] == '('
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5377 && (last == NULL
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5378 || len != (int)strlen (last)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5379 || !strneq (s, last, len)))
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5380 {
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5381 make_tag (s, len, TRUE, s, pos, lineno, linecharno);
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5382 return len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5383 }
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5384
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5385 return 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5386 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5387
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5388
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5389 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5390 * Handle attributes. Currently, tags are generated for defines
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5391 * and records.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5392 *
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5393 * They are on the form:
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5394 * -define(foo, bar).
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5395 * -define(Foo(M, N), M+N).
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5396 * -record(graph, {vtab = notable, cyclic = true}).
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5397 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5398 static void
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5399 erlang_attribute (s)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5400 char *s;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5401 {
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5402 char *cp = s;
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5403
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5404 if ((LOOKING_AT (cp, "-define") || LOOKING_AT (cp, "-record"))
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5405 && *cp++ == '(')
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5406 {
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5407 int len = erlang_atom (skip_spaces (cp));
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5408 if (len > 0)
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5409 make_tag (cp, len, TRUE, s, cp + len - s, lineno, linecharno);
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5410 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5411 return;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5412 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5413
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5414
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5415 /*
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5416 * Consume an Erlang atom (or variable).
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5417 * Return the number of bytes consumed, or -1 if there was an error.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5418 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5419 static int
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5420 erlang_atom (s)
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5421 char *s;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5422 {
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5423 int pos = 0;
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5424
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
5425 if (ISALPHA (s[pos]) || s[pos] == '_')
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5426 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5427 /* The atom is unquoted. */
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5428 do
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5429 pos++;
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5430 while (ISALNUM (s[pos]) || s[pos] == '_');
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5431 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5432 else if (s[pos] == '\'')
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5433 {
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5434 for (pos++; s[pos] != '\''; pos++)
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5435 if (s[pos] == '\0' /* multiline quoted atoms are ignored */
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5436 || (s[pos] == '\\' && s[++pos] == '\0'))
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5437 return 0;
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5438 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5439 }
45809
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5440
cd830b0ced4d * etags.c (erlang_atom, erlang_attribute): Bugs corrected.
Francesco Potortì <pot@gnu.org>
parents: 45798
diff changeset
5441 return pos;
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5442 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5443
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5444
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5445 #ifdef ETAGS_REGEXPS
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5446
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5447 static char *scan_separators __P((char *));
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5448 static void add_regex __P((char *, language *));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5449 static char *substitute __P((char *, char *, struct re_registers *));
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
5450
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5451 /*
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5452 * Take a string like "/blah/" and turn it into "blah", verifying
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5453 * that the first and last characters are the same, and handling
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5454 * quoted separator characters. Actually, stops on the occurrence of
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5455 * an unquoted separator. Also process \t, \n, etc. and turn into
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5456 * appropriate characters. Works in place. Null terminates name string.
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5457 * Returns pointer to terminating separator, or NULL for
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5458 * unterminated regexps.
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5459 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5460 static char *
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5461 scan_separators (name)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5462 char *name;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5463 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5464 char sep = name[0];
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5465 char *copyto = name;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5466 bool quoted = FALSE;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5467
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5468 for (++name; *name != '\0'; ++name)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5469 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5470 if (quoted)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5471 {
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5472 switch (*name)
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5473 {
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5474 case 'a': *copyto++ = '\007'; break; /* BEL (bell) */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5475 case 'b': *copyto++ = '\b'; break; /* BS (back space) */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5476 case 'd': *copyto++ = 0177; break; /* DEL (delete) */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5477 case 'e': *copyto++ = 033; break; /* ESC (delete) */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5478 case 'f': *copyto++ = '\f'; break; /* FF (form feed) */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5479 case 'n': *copyto++ = '\n'; break; /* NL (new line) */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5480 case 'r': *copyto++ = '\r'; break; /* CR (carriage return) */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5481 case 't': *copyto++ = '\t'; break; /* TAB (horizontal tab) */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5482 case 'v': *copyto++ = '\v'; break; /* VT (vertical tab) */
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5483 default:
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5484 if (*name == sep)
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5485 *copyto++ = sep;
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5486 else
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5487 {
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5488 /* Something else is quoted, so preserve the quote. */
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5489 *copyto++ = '\\';
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5490 *copyto++ = *name;
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5491 }
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5492 break;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5493 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5494 quoted = FALSE;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5495 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5496 else if (*name == '\\')
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5497 quoted = TRUE;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5498 else if (*name == sep)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5499 break;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5500 else
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5501 *copyto++ = *name;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5502 }
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5503 if (*name != sep)
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5504 name = NULL; /* signal unterminated regexp */
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5505
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5506 /* Terminate copied string. */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5507 *copyto = '\0';
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5508 return name;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5509 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5510
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5511 /* Look at the argument of --regex or --no-regex and do the right
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5512 thing. Same for each line of a regexp file. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5513 static void
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5514 analyse_regex (regex_arg)
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5515 char *regex_arg;
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5516 {
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5517 if (regex_arg == NULL)
39317
a7f40b000353 * etags.c (analyse_regex): If regex_arg is NULL, return
Francesco Potortì <pot@gnu.org>
parents: 37719
diff changeset
5518 {
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5519 free_regexps (); /* --no-regex: remove existing regexps */
39317
a7f40b000353 * etags.c (analyse_regex): If regex_arg is NULL, return
Francesco Potortì <pot@gnu.org>
parents: 37719
diff changeset
5520 return;
a7f40b000353 * etags.c (analyse_regex): If regex_arg is NULL, return
Francesco Potortì <pot@gnu.org>
parents: 37719
diff changeset
5521 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5522
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5523 /* A real --regexp option or a line in a regexp file. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5524 switch (regex_arg[0])
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5525 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5526 /* Comments in regexp file or null arg to --regex. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5527 case '\0':
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5528 case ' ':
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5529 case '\t':
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5530 break;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5531
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5532 /* Read a regex file. This is recursive and may result in a
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5533 loop, which will stop when the file descriptors are exhausted. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5534 case '@':
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5535 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5536 FILE *regexfp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5537 linebuffer regexbuf;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5538 char *regexfile = regex_arg + 1;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5539
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5540 /* regexfile is a file containing regexps, one per line. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5541 regexfp = fopen (regexfile, "r");
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5542 if (regexfp == NULL)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5543 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5544 pfatal (regexfile);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5545 return;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5546 }
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5547 linebuffer_init (&regexbuf);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5548 while (readline_internal (&regexbuf, regexfp) > 0)
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5549 analyse_regex (regexbuf.buffer);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5550 free (regexbuf.buffer);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5551 fclose (regexfp);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5552 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5553 break;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5554
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5555 /* Regexp to be used for a specific language only. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5556 case '{':
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5557 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5558 language *lang;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5559 char *lang_name = regex_arg + 1;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5560 char *cp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5561
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5562 for (cp = lang_name; *cp != '}'; cp++)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5563 if (*cp == '\0')
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5564 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5565 error ("unterminated language name in regex: %s", regex_arg);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5566 return;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5567 }
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5568 *cp++ = '\0';
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
5569 lang = get_language_from_langname (lang_name);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5570 if (lang == NULL)
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5571 return;
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5572 add_regex (cp, lang);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5573 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5574 break;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5575
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5576 /* Regexp to be used for any language. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5577 default:
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5578 add_regex (regex_arg, NULL);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5579 break;
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5580 }
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5581 }
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5582
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5583 /* Separate the regexp pattern, compile it,
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5584 and care for optional name and modifiers. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5585 static void
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5586 add_regex (regexp_pattern, lang)
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5587 char *regexp_pattern;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5588 language *lang;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5589 {
37719
9c4fdf982ba2 (add_regex): Reset the whole newly allocated pattern buffer instead of
Francesco Potortì <pot@gnu.org>
parents: 37502
diff changeset
5590 static struct re_pattern_buffer zeropattern;
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5591 char sep, *pat, *name, *modifiers;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5592 const char *err;
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
5593 struct re_pattern_buffer *patbuf;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5594 regexp *rp;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5595 bool
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5596 force_explicit_name = TRUE, /* do not use implicit tag names */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5597 ignore_case = FALSE, /* case is significant */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5598 multi_line = FALSE, /* matches are done one line at a time */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5599 single_line = FALSE; /* dot does not match newline */
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5600
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5601
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5602 if (strlen(regexp_pattern) < 3)
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5603 {
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5604 error ("null regexp", (char *)NULL);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5605 return;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5606 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5607 sep = regexp_pattern[0];
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5608 name = scan_separators (regexp_pattern);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5609 if (name == NULL)
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5610 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5611 error ("%s: unterminated regexp", regexp_pattern);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5612 return;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5613 }
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5614 if (name[1] == sep)
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5615 {
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5616 error ("null name for regexp \"%s\"", regexp_pattern);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5617 return;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5618 }
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5619 modifiers = scan_separators (name);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5620 if (modifiers == NULL) /* no terminating separator --> no name */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5621 {
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5622 modifiers = name;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5623 name = "";
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5624 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5625 else
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5626 modifiers += 1; /* skip separator */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5627
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5628 /* Parse regex modifiers. */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5629 for (; modifiers[0] != '\0'; modifiers++)
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5630 switch (modifiers[0])
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5631 {
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5632 case 'N':
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5633 if (modifiers == name)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5634 error ("forcing explicit tag name but no name, ignoring", NULL);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5635 force_explicit_name = TRUE;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5636 break;
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5637 case 'i':
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5638 ignore_case = TRUE;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5639 break;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5640 case 's':
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5641 single_line = TRUE;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5642 /* FALLTHRU */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5643 case 'm':
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5644 multi_line = TRUE;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5645 need_filebuf = TRUE;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5646 break;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5647 default:
45918
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
5648 {
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
5649 char wrongmod [2];
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
5650 wrongmod[0] = modifiers[0];
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
5651 wrongmod[1] = '\0';
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
5652 error ("invalid regexp modifier `%s', ignoring", wrongmod);
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
5653 }
1c3f7d78e90a (add_regex): Invalid regexp modifiers are ignored.
Francesco Potortì <pot@gnu.org>
parents: 45809
diff changeset
5654 break;
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5655 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5656
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5657 patbuf = xnew (1, struct re_pattern_buffer);
37719
9c4fdf982ba2 (add_regex): Reset the whole newly allocated pattern buffer instead of
Francesco Potortì <pot@gnu.org>
parents: 37502
diff changeset
5658 *patbuf = zeropattern;
9c4fdf982ba2 (add_regex): Reset the whole newly allocated pattern buffer instead of
Francesco Potortì <pot@gnu.org>
parents: 37502
diff changeset
5659 if (ignore_case)
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5660 {
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5661 static char lc_trans[CHARS];
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5662 int i;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5663 for (i = 0; i < CHARS; i++)
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5664 lc_trans[i] = lowcase (i);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5665 patbuf->translate = lc_trans; /* translation table to fold case */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5666 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5667
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5668 if (multi_line)
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5669 pat = concat ("^", regexp_pattern, ""); /* anchor to beginning of line */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5670 else
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5671 pat = regexp_pattern;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5672
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5673 if (single_line)
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5674 re_set_syntax (RE_SYNTAX_EMACS | RE_DOT_NEWLINE);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5675 else
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5676 re_set_syntax (RE_SYNTAX_EMACS);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5677
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5678 err = re_compile_pattern (pat, strlen (regexp_pattern), patbuf);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5679 if (multi_line)
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5680 free (pat);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5681 if (err != NULL)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5682 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5683 error ("%s while compiling pattern", err);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5684 return;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5685 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5686
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5687 rp = p_head;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5688 p_head = xnew (1, regexp);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5689 p_head->pattern = savestr (regexp_pattern);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5690 p_head->p_next = rp;
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5691 p_head->lang = lang;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5692 p_head->pat = patbuf;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5693 p_head->name = savestr (name);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5694 p_head->error_signaled = FALSE;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5695 p_head->force_explicit_name = force_explicit_name;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5696 p_head->ignore_case = ignore_case;
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5697 p_head->multi_line = multi_line;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5698 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5699
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5700 /*
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
5701 * Do the substitutions indicated by the regular expression and
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5702 * arguments.
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5703 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5704 static char *
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5705 substitute (in, out, regs)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5706 char *in, *out;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5707 struct re_registers *regs;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5708 {
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
5709 char *result, *t;
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5710 int size, dig, diglen;
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
5711
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
5712 result = NULL;
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
5713 size = strlen (out);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5714
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5715 /* Pass 1: figure out how much to allocate by finding all \N strings. */
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5716 if (out[size - 1] == '\\')
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5717 fatal ("pattern error in \"%s\"", out);
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5718 for (t = etags_strchr (out, '\\');
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5719 t != NULL;
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5720 t = etags_strchr (t + 2, '\\'))
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
5721 if (ISDIGIT (t[1]))
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
5722 {
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5723 dig = t[1] - '0';
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5724 diglen = regs->end[dig] - regs->start[dig];
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5725 size += diglen - 2;
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
5726 }
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5727 else
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5728 size -= 1;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5729
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5730 /* Allocate space and do the substitutions. */
47218
66c5d66d21f6 (regex_tag_multiline, readline): Never pass pfnote a
Francesco Potortì <pot@gnu.org>
parents: 47157
diff changeset
5731 assert (size >= 0);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5732 result = xnew (size + 1, char);
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5733
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5734 for (t = result; *out != '\0'; out++)
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
5735 if (*out == '\\' && ISDIGIT (*++out))
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5736 {
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5737 dig = *out - '0';
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5738 diglen = regs->end[dig] - regs->start[dig];
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5739 strncpy (t, in + regs->start[dig], diglen);
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5740 t += diglen;
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5741 }
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5742 else
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5743 *t++ = *out;
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5744 *t = '\0';
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5745
47218
66c5d66d21f6 (regex_tag_multiline, readline): Never pass pfnote a
Francesco Potortì <pot@gnu.org>
parents: 47157
diff changeset
5746 assert (t <= result + size);
66c5d66d21f6 (regex_tag_multiline, readline): Never pass pfnote a
Francesco Potortì <pot@gnu.org>
parents: 47157
diff changeset
5747 assert (t - result == (int)strlen (result));
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5748
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5749 return result;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5750 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5751
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5752 /* Deallocate all regexps. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5753 static void
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5754 free_regexps ()
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5755 {
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5756 regexp *rp;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5757 while (p_head != NULL)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5758 {
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5759 rp = p_head->p_next;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5760 free (p_head->pattern);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5761 free (p_head->name);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5762 free (p_head);
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5763 p_head = rp;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5764 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5765 return;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5766 }
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5767
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5768 /*
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5769 * Reads the whole file as a single string from `filebuf' and looks for
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5770 * multi-line regular expressions, creating tags on matches.
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5771 * readline already dealt with normal regexps.
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5772 *
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5773 * Idea by Ben Wing <ben@666.com> (2002).
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5774 */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5775 static void
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5776 regex_tag_multiline ()
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5777 {
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5778 char *buffer = filebuf.buffer;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5779 regexp *rp;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5780 char *name;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5781
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5782 for (rp = p_head; rp != NULL; rp = rp->p_next)
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5783 {
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5784 int match = 0;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5785
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5786 if (!rp->multi_line)
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5787 continue; /* skip normal regexps */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5788
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5789 /* Generic initialisations before parsing file from memory. */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5790 lineno = 1; /* reset global line number */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5791 charno = 0; /* reset global char number */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5792 linecharno = 0; /* reset global char number of line start */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5793
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5794 /* Only use generic regexps or those for the current language. */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5795 if (rp->lang != NULL && rp->lang != curfdp->lang)
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5796 continue;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5797
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5798 while (match >= 0 && match < filebuf.len)
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5799 {
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5800 match = re_search (rp->pat, buffer, filebuf.len, charno,
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5801 filebuf.len - match, &rp->regs);
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5802 switch (match)
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5803 {
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5804 case -2:
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5805 /* Some error. */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5806 if (!rp->error_signaled)
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5807 {
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5808 error ("regexp stack overflow while matching \"%s\"",
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5809 rp->pattern);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5810 rp->error_signaled = TRUE;
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5811 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5812 break;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5813 case -1:
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5814 /* No match. */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5815 break;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5816 default:
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5817 if (match == rp->regs.end[0])
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5818 {
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5819 if (!rp->error_signaled)
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5820 {
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5821 error ("regexp matches the empty string: \"%s\"",
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5822 rp->pattern);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5823 rp->error_signaled = TRUE;
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5824 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5825 match = -3; /* exit from while loop */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5826 break;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5827 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5828
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5829 /* Match occurred. Construct a tag. */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5830 while (charno < rp->regs.end[0])
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5831 if (buffer[charno++] == '\n')
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5832 lineno++, linecharno = charno;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5833 name = rp->name;
47218
66c5d66d21f6 (regex_tag_multiline, readline): Never pass pfnote a
Francesco Potortì <pot@gnu.org>
parents: 47157
diff changeset
5834 if (name[0] == '\0')
66c5d66d21f6 (regex_tag_multiline, readline): Never pass pfnote a
Francesco Potortì <pot@gnu.org>
parents: 47157
diff changeset
5835 name = NULL;
66c5d66d21f6 (regex_tag_multiline, readline): Never pass pfnote a
Francesco Potortì <pot@gnu.org>
parents: 47157
diff changeset
5836 else /* make a named tag */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5837 name = substitute (buffer, rp->name, &rp->regs);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5838 if (rp->force_explicit_name)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5839 /* Force explicit tag name, if a name is there. */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5840 pfnote (name, TRUE, buffer + linecharno,
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5841 charno - linecharno + 1, lineno, linecharno);
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5842 else
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
5843 make_tag (name, strlen (name), TRUE, buffer + linecharno,
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5844 charno - linecharno + 1, lineno, linecharno);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5845 break;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5846 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5847 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5848 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5849 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5850
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
5851 #endif /* ETAGS_REGEXPS */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5852
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5853
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5854 static bool
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5855 nocase_tail (cp)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5856 char *cp;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5857 {
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5858 register int len = 0;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5859
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5860 while (*cp != '\0' && lowcase (*cp) == lowcase (dbp[len]))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5861 cp++, len++;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5862 if (*cp == '\0' && !intoken (dbp[len]))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5863 {
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5864 dbp += len;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5865 return TRUE;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5866 }
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5867 return FALSE;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5868 }
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5869
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5870 static void
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5871 get_tag (bp, namepp)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5872 register char *bp;
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5873 char **namepp;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5874 {
45950
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5875 register char *cp = bp;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5876
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5877 if (*bp != '\0')
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5878 {
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5879 /* Go till you get to white space or a syntactic break */
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5880 for (cp = bp + 1; !notinname (*cp); cp++)
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5881 continue;
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5882 make_tag (bp, cp - bp, TRUE,
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5883 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5884 }
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5885
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5886 if (namepp != NULL)
74a2581262b0 (F_getit, Fortran_functions, Ada_getit, Asm_labels)
Francesco Potortì <pot@gnu.org>
parents: 45926
diff changeset
5887 *namepp = savenstr (bp, cp - bp);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5888 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5889
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5890 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5891 * Read a line of text from `stream' into `lbp', excluding the
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5892 * newline or CR-NL, if any. Return the number of characters read from
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5893 * `stream', which is the length of the line including the newline.
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5894 *
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5895 * On DOS or Windows we do not count the CR character, if any before the
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5896 * NL, in the returned length; this mirrors the behavior of Emacs on those
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5897 * platforms (for text files, it translates CR-NL to NL as it reads in the
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5898 * file).
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5899 *
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5900 * If multi-line regular expressions are requested, each line read is
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5901 * appended to `filebuf'.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5902 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5903 static long
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5904 readline_internal (lbp, stream)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5905 linebuffer *lbp;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5906 register FILE *stream;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5907 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5908 char *buffer = lbp->buffer;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5909 register char *p = lbp->buffer;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5910 register char *pend;
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5911 int chars_deleted;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5912
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5913 pend = p + lbp->size; /* Separate to avoid 386/IX compiler bug. */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5914
45655
a4c27d23899f (enum arg_type): New label at_stdin.
Francesco Potortì <pot@gnu.org>
parents: 45654
diff changeset
5915 for (;;)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5916 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5917 register int c = getc (stream);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5918 if (p == pend)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5919 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5920 /* We're at the end of linebuffer: expand it. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5921 lbp->size *= 2;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5922 xrnew (buffer, lbp->size, char);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5923 p += buffer - lbp->buffer;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5924 pend = buffer + lbp->size;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5925 lbp->buffer = buffer;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5926 }
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5927 if (c == EOF)
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5928 {
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5929 *p = '\0';
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5930 chars_deleted = 0;
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5931 break;
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5932 }
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5933 if (c == '\n')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5934 {
10990
c0ceaa45ded7 * etags.c (process_file): free (filename) after using it.
Francesco Potortì <pot@gnu.org>
parents: 10801
diff changeset
5935 if (p > buffer && p[-1] == '\r')
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5936 {
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5937 p -= 1;
15772
eb1cef7102e3 (readline_internal) [DOS_NT]: Don't include CRs when
Richard M. Stallman <rms@gnu.org>
parents: 15683
diff changeset
5938 #ifdef DOS_NT
16373
d50369f4bb41 * etags.c (print_version): Print copyright info.
Francesco Potortì <pot@gnu.org>
parents: 16086
diff changeset
5939 /* Assume CRLF->LF translation will be performed by Emacs
d50369f4bb41 * etags.c (print_version): Print copyright info.
Francesco Potortì <pot@gnu.org>
parents: 16086
diff changeset
5940 when loading this file, so CRs won't appear in the buffer.
d50369f4bb41 * etags.c (print_version): Print copyright info.
Francesco Potortì <pot@gnu.org>
parents: 16086
diff changeset
5941 It would be cleaner to compensate within Emacs;
d50369f4bb41 * etags.c (print_version): Print copyright info.
Francesco Potortì <pot@gnu.org>
parents: 16086
diff changeset
5942 however, Emacs does not know how many CRs were deleted
d50369f4bb41 * etags.c (print_version): Print copyright info.
Francesco Potortì <pot@gnu.org>
parents: 16086
diff changeset
5943 before any given point in the file. */
15772
eb1cef7102e3 (readline_internal) [DOS_NT]: Don't include CRs when
Richard M. Stallman <rms@gnu.org>
parents: 15683
diff changeset
5944 chars_deleted = 1;
eb1cef7102e3 (readline_internal) [DOS_NT]: Don't include CRs when
Richard M. Stallman <rms@gnu.org>
parents: 15683
diff changeset
5945 #else
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5946 chars_deleted = 2;
15772
eb1cef7102e3 (readline_internal) [DOS_NT]: Don't include CRs when
Richard M. Stallman <rms@gnu.org>
parents: 15683
diff changeset
5947 #endif
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5948 }
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5949 else
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5950 {
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5951 chars_deleted = 1;
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5952 }
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5953 *p = '\0';
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5954 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5955 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5956 *p++ = c;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5957 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5958 lbp->len = p - buffer;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5959
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5960 if (need_filebuf /* we need filebuf for multi-line regexps */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5961 && chars_deleted > 0) /* not at EOF */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5962 {
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5963 while (filebuf.size <= filebuf.len + lbp->len + 1) /* +1 for \n */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5964 {
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5965 /* Expand filebuf. */
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5966 filebuf.size *= 2;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5967 xrnew (filebuf.buffer, filebuf.size, char);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5968 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5969 strncpy (filebuf.buffer + filebuf.len, lbp->buffer, lbp->len);
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5970 filebuf.len += lbp->len;
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5971 filebuf.buffer[filebuf.len++] = '\n';
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5972 filebuf.buffer[filebuf.len] = '\0';
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5973 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5974
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5975 return lbp->len + chars_deleted;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5976 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5977
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5978 /*
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5979 * Like readline_internal, above, but in addition try to match the
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5980 * input line against relevant regular expressions and manage #line
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
5981 * directives.
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5982 */
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5983 static void
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5984 readline (lbp, stream)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5985 linebuffer *lbp;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5986 FILE *stream;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5987 {
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5988 long result;
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5989
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5990 linecharno = charno; /* update global char number of line start */
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5991 result = readline_internal (lbp, stream); /* read line */
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5992 lineno += 1; /* increment global line number */
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
5993 charno += result; /* increment global char number */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5994
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
5995 /* Honour #line directives. */
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5996 if (!no_line_directive)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5997 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5998 static bool discard_until_line_directive;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5999
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6000 /* Check whether this is a #line directive. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6001 if (result > 12 && strneq (lbp->buffer, "#line ", 6))
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6002 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6003 int start, lno;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6004
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6005 if (DEBUG) start = 0; /* shut up the compiler */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6006 if (sscanf (lbp->buffer, "#line %d \"%n", &lno, &start) == 1)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6007 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6008 char *endp = lbp->buffer + start;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6009
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6010 assert (start > 0);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6011 while ((endp = etags_strchr (endp, '"')) != NULL
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6012 && endp[-1] == '\\')
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6013 endp++;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6014 if (endp != NULL)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6015 /* Ok, this is a real #line directive. Let's deal with it. */
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
6016 {
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6017 char *taggedabsname; /* absolute name of original file */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6018 char *taggedfname; /* name of original file as given */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6019 char *name; /* temp var */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6020
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6021 discard_until_line_directive = FALSE; /* found it */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6022 name = lbp->buffer + start;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6023 *endp = '\0';
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6024 canonicalize_filename (name); /* for DOS */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6025 taggedabsname = absolute_filename (name, curfdp->infabsdir);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6026 if (filename_is_absolute (name)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6027 || filename_is_absolute (curfdp->infname))
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6028 taggedfname = savestr (taggedabsname);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6029 else
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6030 taggedfname = relative_filename (taggedabsname,tagfiledir);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6031
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6032 if (streq (curfdp->taggedfname, taggedfname))
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6033 /* The #line directive is only a line number change. We
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6034 deal with this afterwards. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6035 free (taggedfname);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6036 else
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6037 /* The tags following this #line directive should be
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6038 attributed to taggedfname. In order to do this, set
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6039 curfdp accordingly. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6040 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6041 fdesc *fdp; /* file description pointer */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6042
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6043 /* Go look for a file description already set up for the
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6044 file indicated in the #line directive. If there is
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6045 one, use it from now until the next #line
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6046 directive. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6047 for (fdp = fdhead; fdp != NULL; fdp = fdp->next)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6048 if (streq (fdp->infname, curfdp->infname)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6049 && streq (fdp->taggedfname, taggedfname))
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6050 /* If we remove the second test above (after the &&)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6051 then all entries pertaining to the same file are
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6052 coalesced in the tags file. If we use it, then
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6053 entries pertaining to the same file but generated
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6054 from different files (via #line directives) will
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6055 go into separate sections in the tags file. These
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6056 alternatives look equivalent. The first one
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6057 destroys some apparently useless information. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6058 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6059 curfdp = fdp;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6060 free (taggedfname);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6061 break;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6062 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6063 /* Else, if we already tagged the real file, skip all
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6064 input lines until the next #line directive. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6065 if (fdp == NULL) /* not found */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6066 for (fdp = fdhead; fdp != NULL; fdp = fdp->next)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6067 if (streq (fdp->infabsname, taggedabsname))
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6068 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6069 discard_until_line_directive = TRUE;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6070 free (taggedfname);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6071 break;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6072 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6073 /* Else create a new file description and use that from
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6074 now on, until the next #line directive. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6075 if (fdp == NULL) /* not found */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6076 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6077 fdp = fdhead;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6078 fdhead = xnew (1, fdesc);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6079 *fdhead = *curfdp; /* copy curr. file description */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6080 fdhead->next = fdp;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6081 fdhead->infname = savestr (curfdp->infname);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6082 fdhead->infabsname = savestr (curfdp->infabsname);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6083 fdhead->infabsdir = savestr (curfdp->infabsdir);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6084 fdhead->taggedfname = taggedfname;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6085 fdhead->usecharno = FALSE;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6086 fdhead->prop = NULL;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6087 fdhead->written = FALSE;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6088 curfdp = fdhead;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6089 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6090 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6091 free (taggedabsname);
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
6092 lineno = lno - 1;
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
6093 readline (lbp, stream);
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
6094 return;
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6095 } /* if a real #line directive */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6096 } /* if #line is followed by a a number */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6097 } /* if line begins with "#line " */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6098
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6099 /* If we are here, no #line directive was found. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6100 if (discard_until_line_directive)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6101 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6102 if (result > 0)
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
6103 {
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
6104 /* Do a tail recursion on ourselves, thus discarding the contents
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
6105 of the line buffer. */
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
6106 readline (lbp, stream);
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
6107 return;
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
6108 }
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6109 /* End of file. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6110 discard_until_line_directive = FALSE;
45665
466c8ca0e543 (scan_separators): Support all character escape
Francesco Potortì <pot@gnu.org>
parents: 45655
diff changeset
6111 return;
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6112 }
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6113 } /* if #line directives should be considered */
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
6114
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
6115 #ifdef ETAGS_REGEXPS
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6116 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6117 int match;
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6118 regexp *rp;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6119 char *name;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6120
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6121 /* Match against relevant regexps. */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6122 if (lbp->len > 0)
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6123 for (rp = p_head; rp != NULL; rp = rp->p_next)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6124 {
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
6125 /* Only use generic regexps or those for the current language.
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
6126 Also do not use multiline regexps, which is the job of
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
6127 regex_tag_multiline. */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6128 if ((rp->lang != NULL && rp->lang != fdhead->lang)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6129 || rp->multi_line)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6130 continue;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6131
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6132 match = re_match (rp->pat, lbp->buffer, lbp->len, 0, &rp->regs);
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6133 switch (match)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6134 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6135 case -2:
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6136 /* Some error. */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6137 if (!rp->error_signaled)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6138 {
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
6139 error ("regexp stack overflow while matching \"%s\"",
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6140 rp->pattern);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6141 rp->error_signaled = TRUE;
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6142 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6143 break;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6144 case -1:
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6145 /* No match. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6146 break;
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
6147 case 0:
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
6148 /* Empty string matched. */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6149 if (!rp->error_signaled)
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
6150 {
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6151 error ("regexp matches the empty string: \"%s\"", rp->pattern);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6152 rp->error_signaled = TRUE;
45798
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
6153 }
a486496c2006 New multi-line regexp and new regexp syntax.
Francesco Potortì <pot@gnu.org>
parents: 45665
diff changeset
6154 break;
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6155 default:
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6156 /* Match occurred. Construct a tag. */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6157 name = rp->name;
47218
66c5d66d21f6 (regex_tag_multiline, readline): Never pass pfnote a
Francesco Potortì <pot@gnu.org>
parents: 47157
diff changeset
6158 if (name[0] == '\0')
66c5d66d21f6 (regex_tag_multiline, readline): Never pass pfnote a
Francesco Potortì <pot@gnu.org>
parents: 47157
diff changeset
6159 name = NULL;
66c5d66d21f6 (regex_tag_multiline, readline): Never pass pfnote a
Francesco Potortì <pot@gnu.org>
parents: 47157
diff changeset
6160 else /* make a named tag */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6161 name = substitute (lbp->buffer, rp->name, &rp->regs);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6162 if (rp->force_explicit_name)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6163 /* Force explicit tag name, if a name is there. */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6164 pfnote (name, TRUE, lbp->buffer, match, lineno, linecharno);
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6165 else
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6166 make_tag (name, strlen (name), TRUE,
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6167 lbp->buffer, match, lineno, linecharno);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6168 break;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6169 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6170 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6171 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
6172 #endif /* ETAGS_REGEXPS */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
6173 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6174
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6175
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
6176 /*
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
6177 * Return a pointer to a space of size strlen(cp)+1 allocated
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
6178 * with xnew where the string CP has been copied.
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
6179 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6180 static char *
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6181 savestr (cp)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6182 char *cp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6183 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6184 return savenstr (cp, strlen (cp));
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6185 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6186
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
6187 /*
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
6188 * Return a pointer to a space of size LEN+1 allocated with xnew where
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
6189 * the string CP has been copied for at most the first LEN characters.
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
6190 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6191 static char *
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6192 savenstr (cp, len)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6193 char *cp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6194 int len;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6195 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6196 register char *dp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6197
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6198 dp = xnew (len + 1, char);
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
6199 strncpy (dp, cp, len);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6200 dp[len] = '\0';
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6201 return dp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6202 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6203
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6204 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6205 * Return the ptr in sp at which the character c last
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6206 * appears; NULL if not found
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6207 *
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6208 * Identical to POSIX strrchr, included for portability.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6209 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6210 static char *
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
6211 etags_strrchr (sp, c)
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6212 register const char *sp;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6213 register int c;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6214 {
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6215 register const char *r;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6216
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6217 r = NULL;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6218 do
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6219 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6220 if (*sp == c)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6221 r = sp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6222 } while (*sp++);
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6223 return (char *)r;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6224 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6225
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6226 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6227 * Return the ptr in sp at which the character c first
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6228 * appears; NULL if not found
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6229 *
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6230 * Identical to POSIX strchr, included for portability.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6231 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6232 static char *
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
6233 etags_strchr (sp, c)
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6234 register const char *sp;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6235 register int c;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6236 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6237 do
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6238 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6239 if (*sp == c)
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6240 return (char *)sp;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
6241 } while (*sp++);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
6242 return NULL;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6243 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6244
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6245 /*
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6246 * Compare two strings, ignoring case for alphabetic characters.
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6247 *
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6248 * Same as BSD's strcasecmp, included for portability.
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6249 */
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6250 static int
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6251 etags_strcasecmp (s1, s2)
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6252 register const char *s1;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6253 register const char *s2;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6254 {
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6255 while (*s1 != '\0'
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6256 && (ISALPHA (*s1) && ISALPHA (*s2)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6257 ? lowcase (*s1) == lowcase (*s2)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6258 : *s1 == *s2))
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6259 s1++, s2++;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6260
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6261 return (ISALPHA (*s1) && ISALPHA (*s2)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6262 ? lowcase (*s1) - lowcase (*s2)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6263 : *s1 - *s2);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6264 }
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6265
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6266 /*
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6267 * Compare two strings, ignoring case for alphabetic characters.
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6268 * Stop after a given number of characters
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6269 *
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6270 * Same as BSD's strncasecmp, included for portability.
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6271 */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6272 static int
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6273 etags_strncasecmp (s1, s2, n)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6274 register const char *s1;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6275 register const char *s2;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6276 register int n;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6277 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6278 while (*s1 != '\0' && n-- > 0
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6279 && (ISALPHA (*s1) && ISALPHA (*s2)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6280 ? lowcase (*s1) == lowcase (*s2)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6281 : *s1 == *s2))
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6282 s1++, s2++;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6283
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6284 if (n < 0)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6285 return 0;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6286 else
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6287 return (ISALPHA (*s1) && ISALPHA (*s2)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6288 ? lowcase (*s1) - lowcase (*s2)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6289 : *s1 - *s2);
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6290 }
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
6291
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6292 /* Skip spaces, return new pointer. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6293 static char *
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6294 skip_spaces (cp)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6295 char *cp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6296 {
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
6297 while (iswhite (*cp))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6298 cp++;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6299 return cp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6300 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6301
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6302 /* Skip non spaces, return new pointer. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6303 static char *
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6304 skip_non_spaces (cp)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6305 char *cp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6306 {
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
6307 while (*cp != '\0' && !iswhite (*cp))
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6308 cp++;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6309 return cp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6310 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6311
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6312 /* Print error message and exit. */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6313 void
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6314 fatal (s1, s2)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6315 char *s1, *s2;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6316 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6317 error (s1, s2);
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
6318 exit (BAD);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6319 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6320
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6321 static void
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6322 pfatal (s1)
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6323 char *s1;
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6324 {
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6325 perror (s1);
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6326 exit (BAD);
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6327 }
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6328
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6329 static void
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
6330 suggest_asking_for_help ()
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
6331 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6332 fprintf (stderr, "\tTry `%s %s' for a complete list of options.\n",
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6333 progname,
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6334 #ifdef LONG_OPTIONS
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6335 "--help"
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6336 #else
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6337 "-h"
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6338 #endif
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6339 );
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
6340 exit (BAD);
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
6341 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
6342
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6343 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6344 static void
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6345 error (s1, s2)
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6346 const char *s1, *s2;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6347 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6348 fprintf (stderr, "%s: ", progname);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6349 fprintf (stderr, s1, s2);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6350 fprintf (stderr, "\n");
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6351 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6352
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6353 /* Return a newly-allocated string whose contents
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6354 concatenate those of s1, s2, s3. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6355 static char *
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6356 concat (s1, s2, s3)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6357 char *s1, *s2, *s3;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6358 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6359 int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6360 char *result = xnew (len1 + len2 + len3 + 1, char);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6361
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
6362 strcpy (result, s1);
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
6363 strcpy (result + len1, s2);
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
6364 strcpy (result + len1 + len2, s3);
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6365 result[len1 + len2 + len3] = '\0';
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6366
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6367 return result;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6368 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6369
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
6370
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6371 /* Does the same work as the system V getcwd, but does not need to
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
6372 guess the buffer size in advance. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6373 static char *
7227
6fa038c33a0f [MSDOS]: #include <sys/param.h> for the following.
Richard M. Stallman <rms@gnu.org>
parents: 7049
diff changeset
6374 etags_getcwd ()
11992
e550e0d13e83 * etags.c (etags_getcwd): Undo the /bin/pwd change. It may raise
Francesco Potortì <pot@gnu.org>
parents: 11990
diff changeset
6375 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6376 #ifdef HAVE_GETCWD
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6377 int bufsize = 200;
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6378 char *path = xnew (bufsize, char);
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6379
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6380 while (getcwd (path, bufsize) == NULL)
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
6381 {
9975
e21b0674f37c * etags.c (<errno.h>): #include added.
Francesco Potortì <pot@gnu.org>
parents: 9773
diff changeset
6382 if (errno != ERANGE)
11886
c5db1295f7df * etags.c (etags_getcwd): Use /bin/pwd instead of pwd because the
Francesco Potortì <pot@gnu.org>
parents: 11673
diff changeset
6383 pfatal ("getcwd");
9975
e21b0674f37c * etags.c (<errno.h>): #include added.
Francesco Potortì <pot@gnu.org>
parents: 9773
diff changeset
6384 bufsize *= 2;
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
6385 free (path);
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6386 path = xnew (bufsize, char);
8789
81a2817b99b2 (etags_getcwd): Use getcwd if available.
Karl Heuer <kwzh@gnu.org>
parents: 8180
diff changeset
6387 }
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6388
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6389 canonicalize_filename (path);
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6390 return path;
16394
675944d1abc9 (etags_getcwd) [WINDOWSNT]: Convert backslashes to slashes.
Richard M. Stallman <rms@gnu.org>
parents: 16373
diff changeset
6391
16086
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6392 #else /* not HAVE_GETCWD */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
6393 #if MSDOS
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6394
16086
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6395 char *p, path[MAXPATHLEN + 1]; /* Fixed size is safe on MSDOS. */
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6396
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6397 getwd (path);
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6398
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6399 for (p = path; *p != '\0'; p++)
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6400 if (*p == '\\')
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6401 *p = '/';
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6402 else
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6403 *p = lowcase (*p);
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6404
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6405 return strdup (path);
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6406 #else /* not MSDOS */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6407 linebuffer path;
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6408 FILE *pipe;
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6409
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6410 linebuffer_init (&path);
11990
1e5d25c997ca * etags.c (etags_getcwd): Undo the /bin/pwd change. It may raise
Francesco Potortì <pot@gnu.org>
parents: 11957
diff changeset
6411 pipe = (FILE *) popen ("pwd 2>/dev/null", "r");
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6412 if (pipe == NULL || readline_internal (&path, pipe) == 0)
11990
1e5d25c997ca * etags.c (etags_getcwd): Undo the /bin/pwd change. It may raise
Francesco Potortì <pot@gnu.org>
parents: 11957
diff changeset
6413 pfatal ("pwd");
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6414 pclose (pipe);
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6415
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6416 return path.buffer;
16086
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
6417 #endif /* not MSDOS */
11992
e550e0d13e83 * etags.c (etags_getcwd): Undo the /bin/pwd change. It may raise
Francesco Potortì <pot@gnu.org>
parents: 11990
diff changeset
6418 #endif /* not HAVE_GETCWD */
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
6419 }
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
6420
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6421 /* Return a newly allocated string containing the file name of FILE
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6422 relative to the absolute directory DIR (which should end with a slash). */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6423 static char *
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6424 relative_filename (file, dir)
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6425 char *file, *dir;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6426 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6427 char *fp, *dp, *afn, *res;
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6428 int i;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6429
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
6430 /* Find the common root of file and dir (with a trailing slash). */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6431 afn = absolute_filename (file, cwd);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6432 fp = afn;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6433 dp = dir;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6434 while (*fp++ == *dp++)
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6435 continue;
16573
4ed8667d6bd9 Wed Nov 13 17:51:29 1996 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 16540
diff changeset
6436 fp--, dp--; /* back to the first differing char */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6437 #ifdef DOS_NT
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6438 if (fp == afn && afn[0] != '/') /* cannot build a relative name */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6439 return afn;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6440 #endif
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6441 do /* look at the equal chars until '/' */
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
6442 fp--, dp--;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6443 while (*fp != '/');
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6444
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6445 /* Build a sequence of "../" strings for the resulting relative file name. */
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6446 i = 0;
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6447 while ((dp = etags_strchr (dp + 1, '/')) != NULL)
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6448 i += 1;
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6449 res = xnew (3*i + strlen (fp + 1) + 1, char);
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6450 res[0] = '\0';
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6451 while (i-- > 0)
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6452 strcat (res, "../");
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6453
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6454 /* Add the file name relative to the common root of file and dir. */
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6455 strcat (res, fp + 1);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6456 free (afn);
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
6457
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
6458 return res;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6459 }
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6460
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6461 /* Return a newly allocated string containing the absolute file name
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6462 of FILE given DIR (which should end with a slash). */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6463 static char *
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6464 absolute_filename (file, dir)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6465 char *file, *dir;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6466 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6467 char *slashp, *cp, *res;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6468
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6469 if (filename_is_absolute (file))
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6470 res = savestr (file);
14920
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
6471 #ifdef DOS_NT
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6472 /* We don't support non-absolute file names with a drive
14920
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
6473 letter, like `d:NAME' (it's too much hassle). */
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
6474 else if (file[1] == ':')
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6475 fatal ("%s: relative file names with drive letters not supported", file);
14920
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
6476 #endif
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6477 else
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6478 res = concat (dir, file, "");
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6479
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6480 /* Delete the "/dirname/.." and "/." substrings. */
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
6481 slashp = etags_strchr (res, '/');
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6482 while (slashp != NULL && slashp[0] != '\0')
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6483 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6484 if (slashp[1] == '.')
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6485 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6486 if (slashp[2] == '.'
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6487 && (slashp[3] == '/' || slashp[3] == '\0'))
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6488 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6489 cp = slashp;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6490 do
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6491 cp--;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6492 while (cp >= res && !filename_is_absolute (cp));
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6493 if (cp < res)
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6494 cp = slashp; /* the absolute name begins with "/.." */
14920
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
6495 #ifdef DOS_NT
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
6496 /* Under MSDOS and NT we get `d:/NAME' as absolute
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6497 file name, so the luser could say `d:/../NAME'.
14920
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
6498 We silently treat this as `d:/NAME'. */
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6499 else if (cp[0] != '/')
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6500 cp = slashp;
14920
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
6501 #endif
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6502 strcpy (cp, slashp + 3);
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6503 slashp = cp;
7776
f91e2cf8770b * etags.c (absolute_filename): Remove infinite loop bug when
Francesco Potortì <pot@gnu.org>
parents: 7775
diff changeset
6504 continue;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6505 }
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6506 else if (slashp[2] == '/' || slashp[2] == '\0')
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6507 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6508 strcpy (slashp, slashp + 2);
7776
f91e2cf8770b * etags.c (absolute_filename): Remove infinite loop bug when
Francesco Potortì <pot@gnu.org>
parents: 7775
diff changeset
6509 continue;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6510 }
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6511 }
7776
f91e2cf8770b * etags.c (absolute_filename): Remove infinite loop bug when
Francesco Potortì <pot@gnu.org>
parents: 7775
diff changeset
6512
f91e2cf8770b * etags.c (absolute_filename): Remove infinite loop bug when
Francesco Potortì <pot@gnu.org>
parents: 7775
diff changeset
6513 slashp = etags_strchr (slashp + 1, '/');
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6514 }
24140
9e4d1d3eab09 (etags_getcwd, absolute_filename) [DOS_NT]: Canonicalize
Geoff Voelker <voelker@cs.washington.edu>
parents: 24059
diff changeset
6515
17477
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6516 if (res[0] == '\0')
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6517 return savestr ("/");
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6518 else
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
6519 return res;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6520 }
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6521
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
6522 /* Return a newly allocated string containing the absolute
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6523 file name of dir where FILE resides given DIR (which should
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
6524 end with a slash). */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6525 static char *
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6526 absolute_dirname (file, dir)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6527 char *file, *dir;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6528 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6529 char *slashp, *res;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6530 char save;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6531
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6532 canonicalize_filename (file);
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
6533 slashp = etags_strrchr (file, '/');
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6534 if (slashp == NULL)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6535 return savestr (dir);
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6536 save = slashp[1];
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6537 slashp[1] = '\0';
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6538 res = absolute_filename (file, dir);
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6539 slashp[1] = save;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6540
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6541 return res;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6542 }
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6543
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6544 /* Whether the argument string is an absolute file name. The argument
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6545 string must have been canonicalized with canonicalize_filename. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6546 static bool
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6547 filename_is_absolute (fn)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6548 char *fn;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6549 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6550 return (fn[0] == '/'
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6551 #ifdef DOS_NT
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
6552 || (ISALPHA(fn[0]) && fn[1] == ':' && fn[2] == '/')
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6553 #endif
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6554 );
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6555 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6556
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6557 /* Translate backslashes into slashes. Works in place. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6558 static void
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6559 canonicalize_filename (fn)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6560 register char *fn;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6561 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6562 #ifdef DOS_NT
26507
aabdfbf65c68 1999-11-19 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26340
diff changeset
6563 /* Canonicalize drive letter case. */
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
6564 if (fn[0] != '\0' && fn[1] == ':' && ISLOWER (fn[0]))
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
6565 fn[0] = upcase (fn[0]);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6566 /* Convert backslashes to slashes. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6567 for (; *fn != '\0'; fn++)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6568 if (*fn == '\\')
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6569 *fn = '/';
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6570 #else
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6571 /* No action. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6572 fn = NULL; /* shut up the compiler */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6573 #endif
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6574 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6575
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6576
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6577 /* Initialize a linebuffer for use */
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6578 static void
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6579 linebuffer_init (lbp)
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6580 linebuffer *lbp;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6581 {
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6582 lbp->size = (DEBUG) ? 3 : 200;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6583 lbp->buffer = xnew (lbp->size, char);
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6584 lbp->buffer[0] = '\0';
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6585 lbp->len = 0;
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6586 }
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6587
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6588 /* Set the minimum size of a string contained in a linebuffer. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
6589 static void
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6590 linebuffer_setlen (lbp, toksize)
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6591 linebuffer *lbp;
16573
4ed8667d6bd9 Wed Nov 13 17:51:29 1996 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 16540
diff changeset
6592 int toksize;
4ed8667d6bd9 Wed Nov 13 17:51:29 1996 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 16540
diff changeset
6593 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6594 while (lbp->size <= toksize)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6595 {
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6596 lbp->size *= 2;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6597 xrnew (lbp->buffer, lbp->size, char);
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6598 }
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6599 lbp->len = toksize;
16573
4ed8667d6bd9 Wed Nov 13 17:51:29 1996 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 16540
diff changeset
6600 }
4ed8667d6bd9 Wed Nov 13 17:51:29 1996 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 16540
diff changeset
6601
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6602 /* Like malloc but get fatal error if memory is exhausted. */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6603 static PTR
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6604 xmalloc (size)
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
6605 unsigned int size;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6606 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
6607 PTR result = (PTR) malloc (size);
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
6608 if (result == NULL)
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
6609 fatal ("virtual memory exhausted", (char *)NULL);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6610 return result;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6611 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6612
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6613 static PTR
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6614 xrealloc (ptr, size)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6615 char *ptr;
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
6616 unsigned int size;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6617 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
6618 PTR result = (PTR) realloc (ptr, size);
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
6619 if (result == NULL)
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
6620 fatal ("virtual memory exhausted", (char *)NULL);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6621 return result;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6622 }
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6623
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6624 /*
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6625 * Local Variables:
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6626 * c-indentation-style: gnu
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6627 * indent-tabs-mode: t
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6628 * tab-width: 8
44604
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6629 * fill-column: 79
47081
9c058ffb550b Two bug corrections and one new feature.
Francesco Potortì <pot@gnu.org>
parents: 45950
diff changeset
6630 * c-font-lock-extra-types: ("FILE" "bool" "language" "linebuffer" "fdesc" "node" "regexp")
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6631 * End:
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6632 */