annotate lib-src/etags.c @ 44614:5adf2b1c20bb

(find_entries): Bug fix in list management.
author Francesco Potortì <pot@gnu.org>
date Tue, 16 Apr 2002 00:02:55 +0000
parents 8f3420af28a8
children 98b894d1d3ad
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
2932
b68f975d505a Change permission notice (not "part of Emacs").
Richard M. Stallman <rms@gnu.org>
parents: 2911
diff changeset
5 This file is not considered part of GNU Emacs.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6
2932
b68f975d505a Change permission notice (not "part of Emacs").
Richard M. Stallman <rms@gnu.org>
parents: 2911
diff changeset
7 This program is free software; you can redistribute it and/or modify
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
8 it under the terms of the GNU General Public License as published by
2932
b68f975d505a Change permission notice (not "part of Emacs").
Richard M. Stallman <rms@gnu.org>
parents: 2911
diff changeset
9 the Free Software Foundation; either version 2 of the License, or
b68f975d505a Change permission notice (not "part of Emacs").
Richard M. Stallman <rms@gnu.org>
parents: 2911
diff changeset
10 (at your option) any later version.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11
2932
b68f975d505a Change permission notice (not "part of Emacs").
Richard M. Stallman <rms@gnu.org>
parents: 2911
diff changeset
12 This program is distributed in the hope that it will be useful,
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15 GNU General Public License for more details.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
14186
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 14144
diff changeset
18 along with this program; if not, write to the Free Software Foundation,
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 14144
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++.
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
30 * 1994 Regexp tags by Tom Tromey.
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
31 * 2001 Nested classes by Francesco Potort́ (ideas by Mykola Dzyuba).
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
32 *
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
33 * Francesco Potort́ <pot@gnu.org> has maintained it since 1993.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
34 */
10761
7aa80669e697 * etags.c (C_entries): Bug corrected in xrealloc of token_str.
Francesco Potortì <pot@gnu.org>
parents: 10754
diff changeset
35
44614
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
36 char pot_etags_version[] = "@(#) pot revision number is 15.15";
10801
32f98b512dd9 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
Francesco Potortì <pot@gnu.org>
parents: 10761
diff changeset
37
32f98b512dd9 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
Francesco Potortì <pot@gnu.org>
parents: 10761
diff changeset
38 #define TRUE 1
32f98b512dd9 * etags.c (C_entries): token_saved removed. Initialise tok.valid and
Francesco Potortì <pot@gnu.org>
parents: 10761
diff changeset
39 #define FALSE 0
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
40
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
41 #ifdef DEBUG
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
42 # undef DEBUG
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
43 # define DEBUG TRUE
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
44 #else
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
45 # define DEBUG FALSE
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
46 # 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
47 #endif
10754
cd1c0b5e8634 * etags.c (C_entries): Initialise the new members of TOKEN.
Francesco Potortì <pot@gnu.org>
parents: 10623
diff changeset
48
26083
134b57acef68 Add support for large files. Merge glibc 2.1.2.
Paul Eggert <eggert@twinsun.com>
parents: 24879
diff changeset
49 #ifdef HAVE_CONFIG_H
134b57acef68 Add support for large files. Merge glibc 2.1.2.
Paul Eggert <eggert@twinsun.com>
parents: 24879
diff changeset
50 # include <config.h>
134b57acef68 Add support for large files. Merge glibc 2.1.2.
Paul Eggert <eggert@twinsun.com>
parents: 24879
diff changeset
51 /* 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
52 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
53 # 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
54 # 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
55 # define LONG_OPTIONS /* accept long options */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
56 # ifndef PTR /* for Xemacs */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
57 # define PTR void *
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
58 # endif
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
59 # ifndef __P /* for Xemacs */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
60 # define __P(args) args
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
61 # 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
62 #else
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
63 # if defined(__STDC__) && (__STDC__ || defined(__SUNPRO_C))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
64 # define __P(args) args /* use prototypes */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
65 # define PTR void * /* for generic pointers */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
66 # else
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
67 # define __P(args) () /* no prototypes */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
68 # define const /* remove const for old compilers' sake */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
69 # 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
70 # endif
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
71 #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
72
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
73 #ifndef _GNU_SOURCE
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
74 # 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
75 #endif
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
76
35740
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
77 /* WIN32_NATIVE is for Xemacs.
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
78 MSDOS, WINDOWSNT, DOS_NT are for Emacs. */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
79 #ifdef WIN32_NATIVE
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
80 # undef MSDOS
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
81 # undef WINDOWSNT
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
82 # define WINDOWSNT
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
83 #endif /* WIN32_NATIVE */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
84
5448
18de002e47dd (main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents: 5044
diff changeset
85 #ifdef MSDOS
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
86 # undef MSDOS
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
87 # 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
88 # include <fcntl.h>
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
89 # 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
90 # 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
91 # 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
92 # 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
93 # 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
94 # endif
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
95 #else
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
96 # define MSDOS FALSE
5448
18de002e47dd (main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents: 5044
diff changeset
97 #endif /* MSDOS */
18de002e47dd (main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents: 5044
diff changeset
98
9773
bd49556a7552 (main, etags_getcwd): Test DOS_NT instead of MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 9635
diff changeset
99 #ifdef WINDOWSNT
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
100 # include <stdlib.h>
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
101 # include <fcntl.h>
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
102 # include <string.h>
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
103 # include <direct.h>
14982
b470e33ce4a9 [WINDOWSNT]: Include io.h.
Richard M. Stallman <rms@gnu.org>
parents: 14924
diff changeset
104 # 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
105 # define MAXPATHLEN _MAX_PATH
35740
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
106 # undef HAVE_NTGUI
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
107 # undef DOS_NT
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
108 # 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
109 # 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
110 # 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
111 # 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
112 #else /* !WINDOWSNT */
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
113 # ifdef STDC_HEADERS
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
114 # include <stdlib.h>
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
115 # include <string.h>
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
116 # else
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
117 extern char *getenv ();
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
118 # endif
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
119 #endif /* !WINDOWSNT */
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
120
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
121 #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
122 # 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
123 #else
35740
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
124 # 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
125 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
126 # 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
127 #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
128
3921
e5e5b3634dd0 * etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents: 3838
diff changeset
129 #include <stdio.h>
e5e5b3634dd0 * etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents: 3838
diff changeset
130 #include <ctype.h>
9975
e21b0674f37c * etags.c (<errno.h>): #include added.
Francesco Potortì <pot@gnu.org>
parents: 9773
diff changeset
131 #include <errno.h>
e21b0674f37c * etags.c (<errno.h>): #include added.
Francesco Potortì <pot@gnu.org>
parents: 9773
diff changeset
132 #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
133 extern int errno;
9975
e21b0674f37c * etags.c (<errno.h>): #include added.
Francesco Potortì <pot@gnu.org>
parents: 9773
diff changeset
134 #endif
3921
e5e5b3634dd0 * etags.c: #include "config.h" and the alloca CPP tangle before
Jim Blandy <jimb@redhat.com>
parents: 3838
diff changeset
135 #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
136 #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
137
35758
aa069bbee4c8 Work around small preprocessor bugs in sunos4 pcc and MinGW.
Francesco Potortì <pot@gnu.org>
parents: 35741
diff changeset
138 #include <assert.h>
aa069bbee4c8 Work around small preprocessor bugs in sunos4 pcc and MinGW.
Francesco Potortì <pot@gnu.org>
parents: 35741
diff changeset
139 #ifdef NDEBUG
aa069bbee4c8 Work around small preprocessor bugs in sunos4 pcc and MinGW.
Francesco Potortì <pot@gnu.org>
parents: 35741
diff changeset
140 # 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
141 # define assert(x) ((void) 0)
35741
e0acf4b43873 (assert) [__MINGW32__]: Redefine assert to work around a
Andrew Innes <andrewi@gnu.org>
parents: 35740
diff changeset
142 #endif
e0acf4b43873 (assert) [__MINGW32__]: Redefine assert to work around a
Andrew Innes <andrewi@gnu.org>
parents: 35740
diff changeset
143
4804
810826b6e19a * etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents: 4750
diff changeset
144 #if !defined (S_ISREG) && defined (S_IFREG)
810826b6e19a * etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents: 4750
diff changeset
145 # 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
146 #endif
810826b6e19a * etags.c (process_file): dead code removed.
Francesco Potortì <pot@gnu.org>
parents: 4750
diff changeset
147
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
148 #ifdef LONG_OPTIONS
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
149 # include <getopt.h>
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
150 #else
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
151 # 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
152 extern char *optarg;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
153 extern int optind, opterr;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
154 #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
155
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
156 #ifdef ETAGS_REGEXPS
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
157 # 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
158 # 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
159 !!! NOTICE !!!
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
160 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
161 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
162 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
163 # endif
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
164 # endif
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
165 # 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
166 #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
167
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
168 /* 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
169 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
170 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
171 #ifdef CTAGS
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
172 # undef CTAGS
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
173 # define CTAGS TRUE
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
174 #else
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
175 # define CTAGS FALSE
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
176 #endif
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
177
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
178 /* Exit codes for success and failure. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
179 #ifdef VMS
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
180 # define GOOD 1
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
181 # define BAD 0
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
182 #else
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
183 # define GOOD 0
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
184 # define BAD 1
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
185 #endif
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
186
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
187 #define streq(s,t) (assert((s)!=NULL || (t)!=NULL), !strcmp (s, t))
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
188 #define strneq(s,t,n) (assert((s)!=NULL || (t)!=NULL), !strncmp (s, t, n))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
189
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
190 #define CHARS 256 /* 2^sizeof(char) */
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
191 #define CHAR(x) ((unsigned int)(x) & (CHARS - 1))
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
192 #define iswhite(c) (_wht[CHAR(c)]) /* c is white */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
193 #define notinname(c) (_nin[CHAR(c)]) /* c is not in a name */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
194 #define begtoken(c) (_btk[CHAR(c)]) /* c can start token */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
195 #define intoken(c) (_itk[CHAR(c)]) /* c can be in token */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
196 #define endtoken(c) (_etk[CHAR(c)]) /* c ends tokens */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
197
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
198 #define ISALNUM(c) isalnum (CHAR(c))
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
199 #define ISALPHA(c) isalpha (CHAR(c))
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
200 #define ISDIGIT(c) isdigit (CHAR(c))
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
201 #define ISLOWER(c) islower (CHAR(c))
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
202
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
203 #define lowcase(c) tolower (CHAR(c))
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
204 #define upcase(c) toupper (CHAR(c))
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
205
12344
7e7941d8cceb * etags.c (find_entries): rewind before rereading the input file.
Francesco Potortì <pot@gnu.org>
parents: 12242
diff changeset
206
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
207 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
208 * 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
209 *
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
210 * 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
211 * 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
212 */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
213 #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
214 # 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
215 # 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
216 (n) * sizeof (Type)))
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
217 # 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
218 (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
219 #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
220 # 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
221 # 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
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 #endif
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
224
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
225 #define bool int
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
226
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
227 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
228
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
229 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
230 {
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
231 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
232 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
233 } 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
234
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
235 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
236 {
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
237 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
238 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
239 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
240 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
241 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
242 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
243 } language;
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
244
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
245 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
246 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
247 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
248 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
249 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
250 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
251 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
252 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
253 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
254 bool usecharno; /* etags tags shall contain char 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
255 } 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
256
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
257 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
258 { /* 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
259 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
260 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
261 char *name; /* tag 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
262 char *pat; /* search pattern */
4702b23921b4 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 bool valid; /* write this tag on the tag 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
264 bool is_func; /* function tag: use pattern in 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
265 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
266 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
267 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
268 } node;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
269
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
270 /*
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
271 * 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
272 * `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
273 * 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
274 * 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
275 * 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
276 */
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
277 typedef struct
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
278 {
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
279 long size;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
280 int len;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
281 char *buffer;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
282 } linebuffer;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
283
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
284 /* 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
285 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
286 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
287 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
288 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
289 at_regexp, /* a regular expression */
4702b23921b4 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 at_icregexp, /* same, but with case ignored */
4702b23921b4 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 at_filename /* a 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
292 } 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
293 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
294 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
295 } 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
296
4702b23921b4 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 #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
298 /* Structure defining a regular expression. */
4702b23921b4 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 typedef struct pattern
4702b23921b4 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 {
4702b23921b4 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 struct pattern *p_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
302 language *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
303 char *regex;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
304 struct re_pattern_buffer *pat;
4702b23921b4 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 struct re_registers regs;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
306 char *name_pattern;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
307 bool error_signaled;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
308 bool ignore_case;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
309 } pattern;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
310 #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
311
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
312
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
313 /* 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
314 Lang_function Ada_funcs;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
315 so let's write it this way */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
316 static void Ada_funcs __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
317 static void Asm_labels __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
318 static void C_entries __P((int c_ext, FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
319 static void default_C_entries __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
320 static void plain_C_entries __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
321 static void Cjava_entries __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
322 static void Cobol_paragraphs __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
323 static void Cplusplus_entries __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
324 static void Cstar_entries __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
325 static void Erlang_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
326 static void Fortran_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
327 static void Yacc_entries __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
328 static void Lisp_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
329 static void Makefile_targets __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
330 static void Pascal_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
331 static void Perl_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
332 static void PHP_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
333 static void Postscript_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
334 static void Prolog_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
335 static void Python_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
336 static void Scheme_functions __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
337 static void TeX_commands __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
338 static void Texinfo_nodes __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
339 static void just_read_file __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
340
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
341 static void print_language_names __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
342 static void print_version __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
343 static void print_help __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
344 int main __P((int, char **));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
346 static compressor *get_compressor_from_suffix __P((char *, char **));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
347 static language *get_language_from_langname __P((const char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
348 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
349 static language *get_language_from_filename __P((char *, bool));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
350 static long readline __P((linebuffer *, FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
351 static long readline_internal __P((linebuffer *, FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
352 static bool nocase_tail __P((char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
353 static char *get_tag __P((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
354
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
355 #ifdef ETAGS_REGEXPS
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
356 static void analyse_regex __P((char *, bool));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
357 static void add_regex __P((char *, bool, language *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
358 static void free_patterns __P((void));
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
359 #endif /* ETAGS_REGEXPS */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
360 static void error __P((const char *, const char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
361 static void suggest_asking_for_help __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
362 void fatal __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
363 static void pfatal __P((char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
364 static void add_node __P((node *, node **));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
365
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
366 static void init __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
367 static void initbuffer __P((linebuffer *));
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
368 static void process_file __P((char *, language *));
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
369 static void find_entries __P((FILE *));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
370 static void free_tree __P((node *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
371 static void pfnote __P((char *, bool, char *, int, int, long));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
372 static void new_pfnote __P((char *, int, bool, char *, int, int, long));
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
373 static void invalidate_nodes __P((fdesc *, node *));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
374 static void put_entries __P((node *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
375
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
376 static char *concat __P((char *, char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
377 static char *skip_spaces __P((char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
378 static char *skip_non_spaces __P((char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
379 static char *savenstr __P((char *, int));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
380 static char *savestr __P((char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
381 static char *etags_strchr __P((const char *, int));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
382 static char *etags_strrchr __P((const char *, int));
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
383 static bool strcaseeq __P((const char *, const char *));
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
384 static char *etags_getcwd __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
385 static char *relative_filename __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
386 static char *absolute_filename __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
387 static char *absolute_dirname __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
388 static bool filename_is_absolute __P((char *f));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
389 static void canonicalize_filename __P((char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
390 static void linebuffer_setlen __P((linebuffer *, int));
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
391 static PTR xmalloc __P((unsigned int));
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
392 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
393
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
394
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
395 static char searchar = '/'; /* use /.../ searches */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
396
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
397 static char *tagfile; /* output file */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
398 static char *progname; /* name this program was invoked with */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
399 static char *cwd; /* current working directory */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
400 static char *tagfiledir; /* directory of tagfile */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
401 static FILE *tagf; /* ioptr for tags file */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
402
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
403 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
404 static fdesc *curfdp; /* current file description */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
405 static int lineno; /* line number of current line */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
406 static long charno; /* current character number */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
407 static long linecharno; /* charno of start of current line */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
408 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
409
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
410 static const int invalidcharno = -1;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
411
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
412 static node *nodehead; /* the head of the binary tree of tags */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
413
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
414 static linebuffer lb; /* the current line */
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
415
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
416 /* boolean "functions" (see init) */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
417 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
418 static char
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
419 /* white chars */
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
420 *white = " \f\t\n\r\v",
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
421 /* not in a name */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
422 *nonam = " \f\t\n\r()=,;",
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
423 /* 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
424 *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
425 /* token starting chars */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
426 *begtk = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz$~@",
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
427 /* valid in-token chars */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
428 *midtk = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz$0123456789";
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
429
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
430 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
431 /* 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
432 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
433 static bool typedefs_or_cplusplus; /* -T: create tags for C typedefs, level */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
434 /* 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
435 /* member functions. */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
436 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
437 /* constants and variables. */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
438 /* -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
439 static bool globals; /* create tags for global variables */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
440 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
441 static bool members; /* create tags for C member variables */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
442 static bool no_line_directive; /* ignore #line directives */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
443 static bool update; /* -u: update tags */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
444 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
445 static bool no_warnings; /* -w: suppress warnings */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
446 static bool cxref_style; /* -x: create cxref style output */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
447 static bool cplusplus; /* .[hc] means C++, not C */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
448 static bool noindentypedefs; /* -I: ignore indentation in C */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
449 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
450
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
451 #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
452 /* List of all 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
453 static pattern *p_head;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
454
4702b23921b4 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 /* How many characters in the character set. (From regex.c.) */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
456 #define CHAR_SET_SIZE 256
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
457 /* Translation table for case-insensitive matching. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
458 static char lc_trans[CHAR_SET_SIZE];
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
459 #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
460
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
461 #ifdef LONG_OPTIONS
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
462 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
463 {
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
464 { "packages-only", no_argument, &packages_only, TRUE },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
465 { "c++", no_argument, NULL, 'C' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
466 { "declarations", no_argument, &declarations, TRUE },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
467 { "no-line-directive", no_argument, &no_line_directive, TRUE },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
468 { "help", no_argument, NULL, 'h' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
469 { "help", no_argument, NULL, 'H' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
470 { "ignore-indentation", no_argument, NULL, 'I' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
471 { "language", required_argument, NULL, 'l' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
472 { "members", no_argument, &members, TRUE },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
473 { "no-members", no_argument, &members, FALSE },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
474 { "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
475 #ifdef ETAGS_REGEXPS
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
476 { "regex", required_argument, NULL, 'r' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
477 { "no-regex", no_argument, NULL, 'R' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
478 { "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
479 #endif /* ETAGS_REGEXPS */
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
480 { "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
481
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
482 #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
483 { "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
484 { "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
485 { "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
486 { "globals", no_argument, &globals, TRUE },
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
487 { "typedefs", no_argument, NULL, 't' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
488 { "typedefs-and-c++", no_argument, NULL, 'T' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
489 { "update", no_argument, NULL, 'u' },
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
490 { "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
491 { "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
492
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
493 #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
494 { "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
495 { "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
496 { "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
497 { "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
498 #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
499 { NULL }
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
500 };
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
501 #endif /* LONG_OPTIONS */
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
502
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
503 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
504 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
505 { "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
506 { "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
507 { "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
508 { "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
509 { "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
510 { NULL }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
511 };
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
512
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
513 /*
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
514 * Language stuff.
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
515 */
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
516
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
517 /* Ada code */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
518 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
519 { "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
520
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
521 /* Assembly code */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
522 static char *Asm_suffixes [] =
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
523 { "a", /* Unix assembler */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
524 "asm", /* Microcontroller assembly */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
525 "def", /* BSO/Tasking definition includes */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
526 "inc", /* Microcontroller include files */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
527 "ins", /* Microcontroller include files */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
528 "s", "sa", /* Unix assembler */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
529 "S", /* cpp-processed Unix assembler */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
530 "src", /* BSO/Tasking C compiler output */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
531 NULL
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
532 };
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
533
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
534 /* 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
535 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
536 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
537 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
538 { "c", "h", NULL };
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
539
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
540 static char *Cplusplus_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
541 { "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
542 "M", /* Objective C++ */
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
543 "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
544 NULL };
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
545
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
546 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
547 { "java", NULL };
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
548
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
549 static char *Cobol_suffixes [] =
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
550 { "COB", "cob", NULL };
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
551
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
552 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
553 { "cs", "hs", 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 *Erlang_suffixes [] =
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
556 { "erl", "hrl", NULL };
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
557
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
558 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
559 { "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
560
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
561 static char *Lisp_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
562 { "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
563
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
564 static char *Makefile_filenames [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
565 { "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
566
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
567 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
568 { "p", "pas", 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 *Perl_suffixes [] =
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
571 { "pl", "pm", NULL };
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
572
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
573 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
574 { "perl", "@PERL@", NULL };
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
575
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
576 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
577 { "php", "php3", "php4", NULL };
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
578
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
579 static char *plain_C_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
580 { "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
581 "m", /* Objective C file */
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
582 "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
583 NULL };
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
584
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
585 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
586 { "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
587
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
588 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
589 { "prolog", NULL };
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
590
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
591 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
592 { "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
593
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
594 /* 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
595 static char *Scheme_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
596 { "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
597
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
598 static char *TeX_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
599 { "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
600
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
601 static char *Texinfo_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
602 { "texi", "texinfo", "txi", NULL };
28663
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
603
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
604 static char *Yacc_suffixes [] =
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
605 { "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
606
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
607 /*
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
608 * 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
609 *
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 * 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
611 * 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
612 */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
613
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
614 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
615 {
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
616 { "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
617 { "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
618 { "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
619 { "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
620 { "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
621 { "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
622 { "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
623 { "fortran", FALSE, Fortran_functions, NULL, Fortran_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
624 { "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
625 { "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
626 { "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
627 { "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
628 { "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
629 { "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
630 { "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
631 { "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
632 { "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
633 { "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
634 { "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
635 { "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
636 { "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
637 { "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
638 { "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
639 { "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
640 { 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
641 };
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
642
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
643
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
644 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
645 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
646 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
647 language *lang;
35302
6a51ef53518f 2001-01-15 Francesco Potorti` <pot@pot.cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 35297
diff changeset
648 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
649
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
650 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
651 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
652 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
653 {
35302
6a51ef53518f 2001-01-15 Francesco Potorti` <pot@pot.cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 35297
diff changeset
654 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
655 if (lang->filenames != NULL)
6a51ef53518f 2001-01-15 Francesco Potorti` <pot@pot.cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 35297
diff changeset
656 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
657 printf (" %s", *name);
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
658 if (lang->suffixes != NULL)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
659 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
660 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
661 puts ("");
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
662 }
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
663 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
664 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
665 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
666 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
667 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
668 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
669 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
670 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
671 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
672
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
673 #ifndef EMACS_NAME
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
674 # define EMACS_NAME "GNU Emacs"
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
675 #endif
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
676 #ifndef VERSION
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
677 # define VERSION "21"
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
678 #endif
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
679 static void
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
680 print_version ()
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
681 {
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
682 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
683 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
684 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
685
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
686 exit (GOOD);
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
687 }
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
688
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
689 static void
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
690 print_help ()
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
691 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
692 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
693 \n\
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
694 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
695 #ifdef LONG_OPTIONS
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
696 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
697 #else
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
698 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
699 linked with GNU getopt.");
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
700 #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
701 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
702 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
703 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
704
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
705 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
706 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
707 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
708
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
709 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
710 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
711
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
712 if (CTAGS)
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
713 puts ("-B, --backward-search\n\
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
714 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
715 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
716
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
717 /* 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
718 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
719 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
720 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
721 puts ("-C, --c++\n\
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
722 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
723 */
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
724
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
725 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
726 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
727 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
728 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
729 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
730 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
731 ("\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
732
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
733 if (CTAGS)
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
734 puts ("-d, --defines\n\
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
735 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
736 else
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
737 puts ("-D, --no-defines\n\
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
738 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
739 This makes the tags file smaller.");
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
740
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
741 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
742 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
743 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
744 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
745 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
746
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
747 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
748 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
749 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
750
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
751 if (CTAGS)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
752 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
753 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
754 else
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
755 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
756 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
757 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
758 puts ("--members\n\
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
759 Create tag entries for member variables in C and derived languages.");
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
760
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
761 #ifdef ETAGS_REGEXPS
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
762 puts ("-r /REGEXP/, --regex=/REGEXP/ or --regex=@regexfile\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
763 Make a tag for each line matching pattern REGEXP in the following\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
764 files. {LANGUAGE}/REGEXP/ uses REGEXP for LANGUAGE files only.\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
765 regexfile is a file containing one REGEXP per line.\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
766 REGEXP is anchored (as if preceded by ^).\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
767 The form /REGEXP/NAME/ creates a named tag.\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
768 For example Tcl named tags can be created with:\n\
37502
3b55af162cd3 (print_help): Enclose the regexp in the help text example in quotes.
Eli Zaretskii <eliz@gnu.org>
parents: 36361
diff changeset
769 --regex=\"/proc[ \\t]+\\([^ \\t]+\\)/\\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
770 puts ("-c /REGEXP/, --ignore-case-regex=/REGEXP/ or --ignore-case-regex=@regexfile\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
771 Like -r, --regex but ignore case when matching expressions.");
10047
9b284d98b102 * etags.c (print_help): print --regex usage for ctags also.
Francesco Potortì <pot@gnu.org>
parents: 9976
diff changeset
772 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
773 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
774 #endif /* ETAGS_REGEXPS */
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
775 puts ("-o FILE, --output=FILE\n\
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
776 Write the tags to FILE.");
10449
2266157d9bcc * etags.c (longopts, print_help, main): Use -I as abbreviation
Francesco Potortì <pot@gnu.org>
parents: 10404
diff changeset
777 puts ("-I, --ignore-indentation\n\
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
778 Don't rely on indentation quite as much as normal. Currently,\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
779 this means not to assume that a closing brace in the first\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
780 column is the final brace of a function or structure\n\
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
781 definition in C and C++.");
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
782
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
783 if (CTAGS)
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
784 {
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
785 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
786 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
787 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
788 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
789 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
790 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
791
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
792 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
793 puts ("-u, --update\n\
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
794 Update the tag entries for the given files, leaving tag\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
795 entries for other files in place. Currently, this is\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
796 implemented by deleting the existing entries for the given\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
797 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
798 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
799 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
800
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
801 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
802 {
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
803 puts ("-v, --vgrind\n\
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
804 Generates an index of items intended for human consumption,\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
805 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
806 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
807 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
808 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
809 files.");
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
810 puts ("-x, --cxref\n\
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
811 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
812 The output uses line numbers instead of page numbers, but\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
813 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
814 which you like.");
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
815 }
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
816
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
817 puts ("-V, --version\n\
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
818 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
819 -h, --help\n\
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
820 Print this help message.");
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
821
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
822 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
823
16373
d50369f4bb41 * etags.c (print_version): Print copyright info.
Francesco Potortì <pot@gnu.org>
parents: 16086
diff changeset
824 puts ("");
26323
98d99afb5ffb * etags.c (print_help): Change email address to send bugs to.
Gerd Moellmann <gerd@gnu.org>
parents: 26262
diff changeset
825 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
826
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
827 exit (GOOD);
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
828 }
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
829
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
830
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
831 #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
832
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
833 #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
834
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
835 /* 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
836 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
837 #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
838 typedef struct {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
839 short curlen;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
840 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
841 } vspec;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
842
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
843 /*
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
844 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
845 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
846 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
847 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
848 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
849 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
850 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
851 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
852 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
853
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
854 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
855 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
856 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
857 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
858 */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
859
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
860 #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
861 #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
862 #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
863 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
864 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
865 vspec *out;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
866 char *in;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
867 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
868 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
869 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
870 static struct dsc$descriptor_s i;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
871 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
872 long status;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
873 short retval;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
874
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
875 if (pass1)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
876 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
877 pass1 = FALSE;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
878 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
879 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
880 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
881 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
882 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
883 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
884 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
885 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
886 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
887 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
888 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
889 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
890 return 1;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
891 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
892 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
893 retval = 0;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
894 else
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 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
897 retval = -1;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
898 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
899 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
900 pass1 = TRUE;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
901 return retval;
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
902 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
903
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
904 /*
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
905 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
906 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
907 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
908 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
909 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
910 char *arg;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
911 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
912 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
913 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
914
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
915 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
916 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
917 case 1:
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
918 *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
919 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
920 case 0:
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
921 *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
922 return NULL;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
923 default:
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
924 *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
925 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
926 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
927 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
928
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
929 #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
930 system (cmd)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
931 char *cmd;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
932 {
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
933 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
934 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
935 #endif
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
936
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
937 #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
938 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
939 char *s;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
940 {
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
941 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
942
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
943 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
944 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
945 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
946 *s = EOS;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
947 break;
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 else
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
950 *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
951 return start;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
952 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
953 #endif /* VMS */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
954
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
955
15683
5f9426e991a3 Declare main as int, not void.
Karl Heuer <kwzh@gnu.org>
parents: 15579
diff changeset
956 int
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
957 main (argc, argv)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
958 int argc;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
959 char *argv[];
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
960 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
961 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
962 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
963 char **included_files;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
964 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
965 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
966 linebuffer filename_lb;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
967 #ifdef VMS
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
968 bool got_err;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
969 #endif
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
970
9773
bd49556a7552 (main, etags_getcwd): Test DOS_NT instead of MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 9635
diff changeset
971 #ifdef DOS_NT
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
972 _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
973 #endif /* DOS_NT */
5448
18de002e47dd (main) [MSDOS]: Open all files as binary.
Richard M. Stallman <rms@gnu.org>
parents: 5044
diff changeset
974
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
975 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
976 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
977 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
978 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
979 file_count = 0;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
980
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
981 /* 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
982 is small. */
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
983 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
984
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
985 #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
986 /* Set syntax for regular expression routines. */
26262
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 re_set_syntax (RE_SYNTAX_EMACS | RE_INTERVALS);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
988 /* Translation table for case-insensitive search. */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
989 for (i = 0; i < CHAR_SET_SIZE; i++)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
990 lc_trans[i] = lowcase (i);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
991 #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
992
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
993 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
994 * 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
995 * 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
996 * global variables.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
997 */
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
998 if (!CTAGS)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
999 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
1000 typedefs = typedefs_or_cplusplus = constantypedefs = TRUE;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1001 globals = TRUE;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1002 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1003
9975
e21b0674f37c * etags.c (<errno.h>): #include added.
Francesco Potortì <pot@gnu.org>
parents: 9773
diff changeset
1004 while (1)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1005 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1006 int opt;
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
1007 char *optstring = "-";
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1008
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1009 #ifdef ETAGS_REGEXPS
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
1010 optstring = "-r:Rc:";
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1011 #endif /* ETAGS_REGEXPS */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1012
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1013 #ifndef LONG_OPTIONS
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1014 optstring = optstring + 1;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1015 #endif /* LONG_OPTIONS */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1016
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
1017 optstring = concat (optstring,
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1018 "Cf:Il:o:SVhH",
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1019 (CTAGS) ? "BxdtTuvw" : "aDi:");
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1020
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1021 opt = getopt_long (argc, argv, optstring, longopts, 0);
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1022 if (opt == EOF)
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1023 break;
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1024
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1025 switch (opt)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1026 {
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
1027 case 0:
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
1028 /* If getopt returns 0, then it has already processed a
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1029 long-named option. We should do nothing. */
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1030 break;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1031
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1032 case 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
1033 /* This means that a file name has been seen. Record it. */
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1034 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
1035 argbuffer[current_arg].what = optarg;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1036 ++current_arg;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1037 ++file_count;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1038 break;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1039
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1040 /* Common options. */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1041 case 'C': cplusplus = TRUE; break;
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
1042 case 'f': /* for compatibility with old makefiles */
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1043 case 'o':
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1044 if (tagfile)
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1045 {
26507
aabdfbf65c68 1999-11-19 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26340
diff changeset
1046 error ("-o option may only be given once.", (char *)NULL);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1047 suggest_asking_for_help ();
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1048 }
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1049 tagfile = optarg;
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1050 break;
10449
2266157d9bcc * etags.c (longopts, print_help, main): Use -I as abbreviation
Francesco Potortì <pot@gnu.org>
parents: 10404
diff changeset
1051 case 'I':
2266157d9bcc * etags.c (longopts, print_help, main): Use -I as abbreviation
Francesco Potortì <pot@gnu.org>
parents: 10404
diff changeset
1052 case 'S': /* for backward compatibility */
2266157d9bcc * etags.c (longopts, print_help, main): Use -I as abbreviation
Francesco Potortì <pot@gnu.org>
parents: 10404
diff changeset
1053 noindentypedefs = TRUE;
2266157d9bcc * etags.c (longopts, print_help, main): Use -I as abbreviation
Francesco Potortì <pot@gnu.org>
parents: 10404
diff changeset
1054 break;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1055 case 'l':
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1056 {
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1057 language *lang = get_language_from_langname (optarg);
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1058 if (lang != 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
1059 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1060 argbuffer[current_arg].lang = 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
1061 argbuffer[current_arg].arg_type = at_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
1062 ++current_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
1063 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1064 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1065 break;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1066 case 'r':
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1067 argbuffer[current_arg].arg_type = at_regexp;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1068 argbuffer[current_arg].what = optarg;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1069 ++current_arg;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1070 break;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1071 case 'R':
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1072 argbuffer[current_arg].arg_type = at_regexp;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1073 argbuffer[current_arg].what = NULL;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1074 ++current_arg;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1075 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
1076 case '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
1077 argbuffer[current_arg].arg_type = at_icregexp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1078 argbuffer[current_arg].what = optarg;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1079 ++current_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
1080 break;
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1081 case 'V':
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1082 print_version ();
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1083 break;
10047
9b284d98b102 * etags.c (print_help): print --regex usage for ctags also.
Francesco Potortì <pot@gnu.org>
parents: 9976
diff changeset
1084 case 'h':
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1085 case 'H':
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1086 print_help ();
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1087 break;
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
1088
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1089 /* Etags 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
1090 case 'a': append_to_tagfile = TRUE; 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
1091 case 'D': constantypedefs = FALSE; 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
1092 case 'i': included_files[nincluded_files++] = optarg; 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
1093
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1094 /* Ctags 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
1095 case 'B': searchar = '?'; 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
1096 case 'd': constantypedefs = TRUE; 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
1097 case 't': typedefs = TRUE; 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
1098 case 'T': typedefs = typedefs_or_cplusplus = TRUE; 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
1099 case 'u': update = TRUE; 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
1100 case 'v': vgrind_style = TRUE; /*FALLTHRU*/
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1101 case 'x': cxref_style = TRUE; 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
1102 case 'w': no_warnings = TRUE; break;
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1103 default:
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1104 suggest_asking_for_help ();
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1105 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1106 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1107
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1108 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
1109 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1110 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
1111 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
1112 ++current_arg;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1113 ++file_count;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1114 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1115
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1116 if (nincluded_files == 0 && file_count == 0)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1117 {
26507
aabdfbf65c68 1999-11-19 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26340
diff changeset
1118 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
1119 suggest_asking_for_help ();
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1120 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1121
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1122 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
1123 tagfile = CTAGS ? "tags" : "TAGS";
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
1124 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
1125 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
1126 {
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
1127 char *oldcwd = cwd;
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
1128 cwd = concat (oldcwd, "/", "");
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
1129 free (oldcwd);
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
1130 }
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1131 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
1132 tagfiledir = cwd;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
1133 else
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
1134 tagfiledir = absolute_dirname (tagfile, cwd);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1135
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1136 init (); /* set up boolean "functions" */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1137
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1138 initbuffer (&lb);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1139 initbuffer (&filename_lb);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1140
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
1141 if (!CTAGS)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1142 {
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1143 if (streq (tagfile, "-"))
14920
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1144 {
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1145 tagf = stdout;
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1146 #ifdef DOS_NT
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1147 /* 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
1148 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
1149 if (!isatty (fileno (stdout)))
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1150 setmode (fileno (stdout), O_BINARY);
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1151 #endif /* DOS_NT */
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
1152 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1153 else
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1154 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
1155 if (tagf == NULL)
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
1156 pfatal (tagfile);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1157 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1158
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1159 /*
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1160 * 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
1161 */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1162 for (i = 0; i < current_arg; ++i)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1163 {
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
1164 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
1165 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
1166
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1167 switch (argbuffer[i].arg_type)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1168 {
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1169 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
1170 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
1171 break;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1172 #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
1173 case at_regexp:
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1174 analyse_regex (argbuffer[i].what, 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
1175 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
1176 case at_icregexp:
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1177 analyse_regex (argbuffer[i].what, TRUE);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1178 break;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1179 #endif
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1180 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
1181 #ifdef VMS
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1182 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
1183 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1184 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
1185 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1186 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
1187 argc--, argv++;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1188 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1189 else
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1190 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1191 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
1192 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1193 #else
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1194 this_file = argbuffer[i].what;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1195 #endif
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1196 /* 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
1197 (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
1198 if (streq (this_file, "-"))
10761
7aa80669e697 * etags.c (C_entries): Bug corrected in xrealloc of token_str.
Francesco Potortì <pot@gnu.org>
parents: 10754
diff changeset
1199 while (readline_internal (&filename_lb, stdin) > 0)
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
1200 process_file (filename_lb.buffer, lang);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1201 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
1202 process_file (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
1203 #ifdef VMS
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1204 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1205 #endif
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1206 break;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1207 }
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
1208 }
10761
7aa80669e697 * etags.c (C_entries): Bug corrected in xrealloc of token_str.
Francesco Potortì <pot@gnu.org>
parents: 10754
diff changeset
1209
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1210 #ifdef ETAGS_REGEXPS
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1211 free_patterns ();
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 #endif /* ETAGS_REGEXPS */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1213
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1214 if (!CTAGS || cxref_style)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1215 {
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
1216 put_entries (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
1217 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
1218 nodehead = NULL;
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1219 if (!CTAGS)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1220 while (nincluded_files-- > 0)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1221 fprintf (tagf, "\f\n%s,include\n", *included_files++);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1222
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1223 if (fclose (tagf) == EOF)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1224 pfatal (tagfile);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1225 exit (GOOD);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1226 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1227
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
1228 if (update)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1229 {
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1230 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
1231 for (i = 0; i < current_arg; ++i)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1232 {
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1233 if (argbuffer[i].arg_type != at_filename)
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1234 continue;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1235 sprintf (cmd,
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1236 "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
1237 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
1238 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
1239 fatal ("failed to execute shell command", (char *)NULL);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1240 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1241 append_to_tagfile = TRUE;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1242 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1243
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1244 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
1245 if (tagf == NULL)
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1246 pfatal (tagfile);
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
1247 put_entries (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
1248 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
1249 nodehead = NULL;
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1250 if (fclose (tagf) == EOF)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1251 pfatal (tagfile);
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1252
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1253 if (update)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1254 {
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1255 char cmd[BUFSIZ];
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
1256 sprintf (cmd, "sort %s -o %s", tagfile, tagfile);
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1257 exit (system (cmd));
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1258 }
16373
d50369f4bb41 * etags.c (print_version): Print copyright info.
Francesco Potortì <pot@gnu.org>
parents: 16086
diff changeset
1259 return GOOD;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1260 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1261
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1262
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1263 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1264 * 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
1265 * 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
1266 * 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
1267 * and EXTPTR is not significant.
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
1268 * 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
1269 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1270 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
1271 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
1272 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
1273 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
1274 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1275 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
1276 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
1277
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1278 /* 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
1279 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
1280 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
1281 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
1282 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
1283 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
1284 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
1285 *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
1286 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
1287 /* 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
1288 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
1289 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
1290 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
1291 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1292 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
1293 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
1294 return compr;
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1295 if (!MSDOS)
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1296 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
1297 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
1298 *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
1299 } 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
1300 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
1301 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1302
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1303
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1304
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1305 /*
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 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
1307 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1308 static language *
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1309 get_language_from_langname (name)
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
1310 const char *name;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1311 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1312 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
1313
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 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
1315 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
1316 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
1317 {
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 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
1319 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
1320 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
1321 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
1322 }
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
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 return NULL;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1325 }
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1326
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1327
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1328 /*
26262
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 * 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
1330 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1331 static language *
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1332 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
1333 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
1334 {
26262
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 language *lang;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1336 char **iname;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1337
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1338 if (interpreter == NULL)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1339 return NULL;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1340 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
1341 if (lang->interpreters != NULL)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1342 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
1343 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
1344 return lang;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1345
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1346 return NULL;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1347 }
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1348
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1349
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1350
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1351 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1352 * 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
1353 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1354 static language *
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1355 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
1356 char *file;
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1357 bool case_sensitive;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1358 {
26262
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 language *lang;
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1360 char **name, **ext, *suffix;
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1361
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1362 /* Try whole file name first. */
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1363 for (lang = lang_names; lang->name != NULL; lang++)
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1364 if (lang->filenames != NULL)
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1365 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
1366 if ((case_sensitive)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1367 ? streq (*name, file)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1368 : strcaseeq (*name, file))
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1369 return lang;
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1370
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
1371 /* 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
1372 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
1373 if (suffix == NULL)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1374 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
1375 suffix += 1;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1376 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
1377 if (lang->suffixes != NULL)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1378 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
1379 if ((case_sensitive)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1380 ? streq (*ext, suffix)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1381 : 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
1382 return lang;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1383 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
1384 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1385
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
1386
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1387 /*
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1388 * This routine is called on each file argument.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1389 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1390 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
1391 process_file (file, lang)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1392 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
1393 language *lang;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1394 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1395 struct stat stat_buf;
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1396 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
1397 static const fdesc emptyfdesc;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1398 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
1399 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
1400 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
1401 char *ext, *real_name;
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1402 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
1403
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1404
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1405 canonicalize_filename (file);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
1406 if (streq (file, tagfile) && !streq (tagfile, "-"))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1407 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1408 error ("skipping inclusion of %s in self.", file);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1409 return;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1410 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1411 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
1412 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1413 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
1414 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
1415 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1416 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
1417 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1418 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
1419 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
1420 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1421
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
1422 /* 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
1423 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
1424 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
1425 {
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
1426 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
1427 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
1428 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
1429 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1430
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1431 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
1432 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1433 /* 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
1434 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
1435 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
1436 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1437 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
1438 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
1439 }
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 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
1441 {
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 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
1443 {
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 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
1445 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
1446 {
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1447 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
1448 {
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1449 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
1450 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
1451 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
1452 {
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1453 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
1454 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
1455 {
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1456 real_name = compressed_name;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1457 break;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1458 }
26262
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 }
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1460 if (real_name != NULL)
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1461 break;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1462 } /* 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
1463 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
1464 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
1465 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1466 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
1467 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1468 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
1469 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
1470 }
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 }
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 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
1474 {
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 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
1476 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
1477 }
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 } /* 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
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 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
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 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
1483 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
1484 }
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 (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
1486 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1487 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
1488 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
1489 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
1490 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1491 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
1492 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
1493 if (inf == NULL)
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
1494 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1495 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
1496 goto cleanup;
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
1497 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1498
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1499 /* Create a new input file description entry. */
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1500 fdp = xnew (1, fdesc);
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1501 *fdp = emptyfdesc;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1502 fdp->next = fdhead;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1503 fdp->infname = savestr (uncompressed_name);
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1504 fdp->lang = lang;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1505 fdp->infabsname = absolute_filename (uncompressed_name, cwd);
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1506 fdp->infabsdir = absolute_dirname (uncompressed_name, cwd);
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
1507 if (filename_is_absolute (uncompressed_name))
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1508 {
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
1509 /* file is an absolute file name. Canonicalize it. */
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1510 fdp->taggedfname = absolute_filename (uncompressed_name, NULL);
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1511 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1512 else
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1513 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1514 /* file is a file name relative to cwd. Make it relative
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1515 to the directory of the tags file. */
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1516 fdp->taggedfname = relative_filename (uncompressed_name, tagfiledir);
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1517 }
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1518 fdp->usecharno = TRUE; /* use char position when making tags */
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1519 fdp->prop = NULL;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1520
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1521 fdhead = fdp;
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
1522 curfdp = fdhead; /* the current 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
1523
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1524 find_entries (inf);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1525
26262
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 if (real_name == compressed_name)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1527 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
1528 else
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1529 retval = fclose (inf);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1530 if (retval < 0)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1531 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
1532
44614
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1533 /* If not Ctags, and if this is not metasource and if it contained no #line
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1534 directives, we can write the tags and free curfdp an all nodes pointing to
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1535 it. */
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1536 if (!CTAGS
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1537 && curfdp == fdhead /* no #line directives in this file */
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1538 && !curfdp->lang->metasource)
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1539 {
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1540 /* Write tags for file curfdp->taggedfname. */
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1541 ;
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1542 }
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1543
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
1544 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
1545 if (compressed_name) free (compressed_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
1546 if (uncompressed_name) free (uncompressed_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
1547 return;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1548 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1549
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1550 /*
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3569
diff changeset
1551 * 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
1552 * by setting boolean flags dependent upon the corresponding character.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1553 * 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
1554 * all of the array "_wht" is set to FALSE, and then the elements
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1555 * subscripted by the chars in "white" are set to TRUE. Thus "_wht"
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1556 * of a char is TRUE if it is the string "white", else FALSE.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1557 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1558 static void
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1559 init ()
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1560 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
1561 register char *sp;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
1562 register int i;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1563
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1564 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
1565 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
1566 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
1567 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
1568 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
1569 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
1570 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
1571 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
1572 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
1573 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
1574 endtoken('\0') = endtoken('\n');
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1575 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1576
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1577 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1578 * This routine opens the specified file and calls the function
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1579 * which finds the function and type definitions.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1580 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1581 static node *last_node = 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
1582
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1583 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
1584 find_entries (inf)
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1585 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1586 {
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1587 char *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
1588 node *old_last_node;
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
1589 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
1590 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
1591
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1592 /* 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
1593 if (lang != NULL && lang->function != NULL)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1594 {
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
1595 parser = lang->function;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1596 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1597
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
1598 /* 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
1599 if (parser == NULL)
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1600 {
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1601 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
1602 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
1603 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1604 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
1605 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
1606 }
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1607 }
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1608
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
1609 /* 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
1610 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
1611 && 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
1612 && lb.len >= 2
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1613 && lb.buffer[0] == '#'
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1614 && lb.buffer[1] == '!')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1615 {
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1616 char *lp;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1617
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1618 /* 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
1619 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
1620 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
1621 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
1622 if (lp != NULL)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1623 lp += 1;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1624 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
1625 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
1626 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
1627 *cp = '\0';
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1628
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1629 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
1630 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1631 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
1632 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
1633 {
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
1634 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
1635 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
1636 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1637 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1638 }
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
1639
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1640 /* 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
1641 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
1642 which is unlikely. */
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1643 if (parser == NULL)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1644 rewind (inf);
44607
8f3420af28a8 * etags.c (get_language_from_filename): Add one argument.
Francesco Potortì <pot@gnu.org>
parents: 44605
diff changeset
1645
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1646 /* 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
1647 if (parser == NULL)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1648 {
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1649 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
1650 if (lang != NULL && lang->function != NULL)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1651 {
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1652 curfdp->lang = lang;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1653 parser = lang->function;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1654 }
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1655 }
44607
8f3420af28a8 * etags.c (get_language_from_filename): Add one argument.
Francesco Potortì <pot@gnu.org>
parents: 44605
diff changeset
1656
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
1657 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
1658 && curfdp->lang != NULL && curfdp->lang->metasource)
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1659 /* 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
1660 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
1661 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
1662 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
1663 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
1664 {
4702b23921b4 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 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
1666 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
1667 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
1668 && 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
1669 /* 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
1670 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
1671 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1672 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
1673
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1674 if (DEBUG)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1675 fprintf (stderr,
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1676 "Removing references to \"%s\" obtained from \"%s\"\n",
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1677 badfdp->taggedfname, badfdp->infname);
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1678
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
1679 /* Delete the tags referring to badfdp. */
4702b23921b4 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 invalidate_nodes (badfdp, 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
1681
44614
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
diff changeset
1682 *fdpp = badfdp->next; /* remove the bad description from the list */
5adf2b1c20bb (find_entries): Bug fix in list management.
Francesco Potortì <pot@gnu.org>
parents: 44607
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 /* Delete badfdp. */
4702b23921b4 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 (badfdp->infname != NULL) free (badfdp->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
1686 if (badfdp->infabsname != NULL) free (badfdp->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
1687 if (badfdp->infabsdir != NULL) free (badfdp->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
1688 if (badfdp->taggedfname != NULL) free (badfdp->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
1689 if (badfdp->prop != NULL) free (badfdp->prop);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1690 free (badfdp);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1691 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1692 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
1693 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
1694 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1695
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1696 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
1697 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1698 parser (inf);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1699 return;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1700 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1701
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1702 /* Else try Fortran. */
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1703 old_last_node = last_node;
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
1704 curfdp->lang = get_language_from_langname ("fortran");
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1705 Fortran_functions (inf);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1706
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
1707 if (old_last_node == last_node)
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
1708 /* No Fortran entries found. Try C. */
12344
7e7941d8cceb * etags.c (find_entries): rewind before rereading the input file.
Francesco Potortì <pot@gnu.org>
parents: 12242
diff changeset
1709 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1710 /* We do not tag if rewind fails.
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1711 Only the file name will be recorded in the tags file. */
12344
7e7941d8cceb * etags.c (find_entries): rewind before rereading the input file.
Francesco Potortì <pot@gnu.org>
parents: 12242
diff changeset
1712 rewind (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
1713 curfdp->lang = get_language_from_langname (cplusplus ? "c++" : "c");
12344
7e7941d8cceb * etags.c (find_entries): rewind before rereading the input file.
Francesco Potortì <pot@gnu.org>
parents: 12242
diff changeset
1714 default_C_entries (inf);
7e7941d8cceb * etags.c (find_entries): rewind before rereading the input file.
Francesco Potortì <pot@gnu.org>
parents: 12242
diff changeset
1715 }
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
1716 return;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1717 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
1718
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1719
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1720 /* Record a tag. */
27658
5980f19581dc (pfnote, new_pfnote, C_entries, prolog_pred, erlang_func): Add
Dave Love <fx@gnu.org>
parents: 27595
diff changeset
1721 static void
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
1722 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
1723 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
1724 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
1725 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
1726 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
1727 int lno; /* line number */
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1728 long cno; /* character number */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1729 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1730 register node *np;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1731
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1732 if (CTAGS && name == NULL)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1733 return;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1734
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1735 np = xnew (1, node);
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1736
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1737 /* 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
1738 if (CTAGS && !cxref_style && streq (name, "main"))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1739 {
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
1740 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
1741 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
1742 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
1743 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
1744 fp[0] = '\0';
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1745 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1746 else
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
1747 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
1748 np->valid = TRUE;
10623
8a73e71a55e3 * etags.c (pfnote): Initialise been_warned in the node.
Francesco Potortì <pot@gnu.org>
parents: 10449
diff changeset
1749 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
1750 np->fdp = curfdp;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1751 np->is_func = is_func;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1752 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
1753 if (np->fdp->usecharno)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1754 /* 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
1755 ctags compatibility? old versions compatibility? I don't know.
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1756 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
1757 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
1758 uncomment the +1 below. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1759 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
1760 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
1761 np->cno = invalidcharno;
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
1762 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
1763 if (CTAGS && !cxref_style)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1764 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1765 if (strlen (linestart) < 50)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1766 np->pat = concat (linestart, "$", "");
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1767 else
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1768 np->pat = savenstr (linestart, 50);
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1769 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1770 else
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
1771 np->pat = savenstr (linestart, linelen);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1772
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
1773 add_node (np, &nodehead);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1774 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1775
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
1776 /*
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
1777 * TAGS format specification
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
1778 * Idea by Sam Kendall <kendall@mv.mv.com> (1997)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1779 *
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1780 * pfnote should emit the optimized form [unnamed tag] only if:
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1781 * 1. name does not contain any of the characters " \t\r\n(),;";
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1782 * 2. linestart contains name as either a rightmost, or rightmost but
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1783 * one character, substring;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1784 * 3. the character, if any, immediately before name in linestart must
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1785 * be one of the characters " \t(),;";
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1786 * 4. the character, if any, immediately after name in linestart must
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1787 * also be one of the characters " \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
1788 *
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1789 * The real implementation uses the notinname() macro, which recognises
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
1790 * characters slightly different from " \t\r\n(),;". See the variable
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1791 * `nonam'.
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1792 */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1793 #define traditional_tag_style TRUE
27658
5980f19581dc (pfnote, new_pfnote, C_entries, prolog_pred, erlang_func): Add
Dave Love <fx@gnu.org>
parents: 27595
diff changeset
1794 static void
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1795 new_pfnote (name, namelen, is_func, linestart, linelen, lno, cno)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1796 char *name; /* tag name, or NULL if unnamed */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1797 int namelen; /* tag length */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1798 bool is_func; /* tag is a function */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1799 char *linestart; /* start of the line where tag is */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1800 int linelen; /* length of the line where tag is */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1801 int lno; /* line number */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1802 long cno; /* character number */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1803 {
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1804 register char *cp;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1805 bool named;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1806
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1807 named = TRUE;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1808 if (!CTAGS)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1809 {
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1810 for (cp = name; !notinname (*cp); cp++)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1811 continue;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1812 if (*cp == '\0') /* rule #1 */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1813 {
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1814 cp = linestart + linelen - namelen;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1815 if (notinname (linestart[linelen-1]))
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1816 cp -= 1; /* rule #4 */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1817 if (cp >= linestart /* rule #2 */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1818 && (cp == linestart
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1819 || notinname (cp[-1])) /* rule #3 */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1820 && strneq (name, cp, namelen)) /* rule #2 */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1821 named = FALSE; /* use unnamed tag */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1822 }
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1823 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1824
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1825 if (named)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1826 name = savenstr (name, namelen);
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1827 else
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1828 name = NULL;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1829 pfnote (name, is_func, linestart, linelen, lno, cno);
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1830 }
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
1831
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1832 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1833 * free_tree ()
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1834 * recurse on left children, iterate on right children.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1835 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1836 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
1837 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
1838 register node *np;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1839 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1840 while (np)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1841 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1842 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
1843 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
1844 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
1845 free (np->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
1846 free (np->pat);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1847 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
1848 np = node_right;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1849 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1850 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1851
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1852 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1853 * add_node ()
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1854 * 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
1855 * 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
1856 * balancing.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1857 *
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1858 * add_node is the only function allowed to add nodes, so it can
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1859 * maintain state.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1860 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1861 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
1862 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
1863 node *np, **cur_node_p;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1864 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1865 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
1866 register node *cur_node = *cur_node_p;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1867
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1868 if (cur_node == NULL)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1869 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
1870 *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
1871 last_node = np;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1872 return;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1873 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1874
6530
12e47da67bb5 * etags.c (emacs_tags_format, ETAGS): removed. Use CTAGS instead.
Francesco Potortì <pot@gnu.org>
parents: 6482
diff changeset
1875 if (!CTAGS)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1876 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1877 /* Etags Mode */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1878 assert (last_node != NULL);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1879 /* 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
1880 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
1881 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
1882 used sublist. */
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 if (last_node->fdp == np->fdp)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1884 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1885 /* Let's use the same sublist as the last added node. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1886 last_node->right = np;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1887 last_node = np;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1888 }
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
1889 else if (cur_node->fdp == np->fdp)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1890 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1891 /* 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
1892 good for us. Let's scan this sublist. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1893 add_node (np, &cur_node->right);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1894 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1895 else
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1896 /* 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
1897 next one. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1898 add_node (np, &cur_node->left);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1899 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1900 else
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1901 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1902 /* 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
1903 dif = strcmp (np->name, cur_node->name);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1904
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1905 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1906 * If this tag name matches an existing one, then
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1907 * do not add the node, but maybe print a warning.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1908 */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1909 if (!dif)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1910 {
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
1911 if (np->fdp == cur_node->fdp)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1912 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1913 if (!no_warnings)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1914 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1915 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
1916 np->fdp->infname, lineno, np->name);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1917 fprintf (stderr, "Second entry ignored\n");
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1918 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1919 }
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
1920 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
1921 {
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
1922 fprintf
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
1923 (stderr,
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
1924 "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
1925 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
1926 cur_node->been_warned = TRUE;
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
1927 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1928 return;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1929 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1930
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1931 /* 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
1932 add_node (np, dif < 0 ? &cur_node->left : &cur_node->right);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1933 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1934 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
1935
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
1936 /*
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1937 * 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
1938 * Scan the node tree and invalidate all nodes pointing to 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
1939 * given 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
1940 */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1941 static void
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1942 invalidate_nodes (badfdp, np)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1943 fdesc *badfdp;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1944 node *np;
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1945 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1946 if (np->left != 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
1947 invalidate_nodes (badfdp, np->left);
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1948 /* Memory leak here: if not CTAGS, in which case it would be quite
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1949 difficult, the node could be freed. If CTAGS the node is part of a
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
1950 binary tree, if not it is part of a list of lists. */
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
1951 if (np->fdp == badfdp)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1952 np-> valid = 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
1953 if (np->right != 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
1954 invalidate_nodes (badfdp, np->right);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1955 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
1956
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1957
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1958 static int total_size_of_entries __P((node *));
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1959 static int number_len __P((long));
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1960
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
1961 /* 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
1962 static int
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1963 number_len (num)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1964 long num;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1965 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1966 int len = 1;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1967 while ((num /= 10) > 0)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1968 len += 1;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1969 return len;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1970 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1971
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1972 /*
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1973 * 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
1974 * 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
1975 * 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
1976 * but is still supplied for backward compatibility.
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1977 */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1978 static int
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1979 total_size_of_entries (np)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1980 register node *np;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1981 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1982 register int total = 0;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1983
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1984 for (; np != NULL; np = np->right)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1985 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1986 total += strlen (np->pat) + 1; /* pat\177 */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1987 if (np->name != NULL)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1988 total += strlen (np->name) + 1; /* name\001 */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1989 total += number_len ((long) np->lno) + 1; /* lno, */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1990 if (np->cno != invalidcharno) /* cno */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1991 total += number_len (np->cno);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1992 total += 1; /* newline */
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
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1995 return total;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1996 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
1997
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
1998 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
1999 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
2000 register node *np;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2001 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2002 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
2003 static fdesc *fdp = NULL;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2004
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2005 if (np == NULL)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2006 return;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2007
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2008 /* Output subentries that precede this one */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2009 if (CTAGS)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2010 put_entries (np->left);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2011
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2012 /* 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
2013 if (np->valid)
240
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 (!CTAGS)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2016 {
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
2017 /* 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
2018 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
2019 {
4702b23921b4 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 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
2021 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
2022 fdp->taggedfname, total_size_of_entries (np));
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2023 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2024 fputs (np->pat, 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
2025 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
2026 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
2027 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2028 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
2029 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
2030 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2031 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
2032 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
2033 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
2034 fputs ("\n", tagf);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2035 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2036 else
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2037 {
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
2038 /* 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
2039 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
2040 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
2041
4702b23921b4 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 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
2043 {
4702b23921b4 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 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
2045 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
2046 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
2047 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
2048 fprintf (stdout, "%-16s %3d %-16s %s\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
2049 np->name, np->lno, np->fdp->taggedfname, np->pat);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2050 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2051 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
2052 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2053 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
2054
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2055 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
2056 { /* 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
2057 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
2058 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
2059
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2060 for (sp = np->pat; *sp; sp++)
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2061 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2062 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
2063 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
2064 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
2065 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2066 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
2067 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2068 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
2069 { /* 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
2070 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
2071 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
2072 putc ('\n', tagf);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2073 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2074 }
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
2075 } /* if this node contains a valid tag */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2076
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2077 /* 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
2078 put_entries (np->right);
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2079 if (!CTAGS)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2080 put_entries (np->left);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2081 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2082
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2083
35740
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2084 /* C extensions. */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2085 #define C_EXT 0x00fff /* C extensions */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2086 #define C_PLAIN 0x00000 /* C */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2087 #define C_PLPL 0x00001 /* C++ */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2088 #define C_STAR 0x00003 /* C* */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2089 #define C_JAVA 0x00005 /* JAVA */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2090 #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
2091 #define YACC 0x10000 /* yacc file */
9a7c0217c7bd Comment updates to etags.c
Francesco Potortì <pot@gnu.org>
parents: 35665
diff changeset
2092
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2093 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2094 * The C symbol tables.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2095 */
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2096 enum sym_type
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2097 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2098 st_none,
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2099 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
2100 st_C_gnumacro,
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2101 st_C_ignore,
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2102 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
2103 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
2104 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
2105 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
2106 };
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2107
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2108 static unsigned int hash __P((const char *, unsigned int));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2109 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
2110 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
2111
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2112 /* 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
2113 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
2114 %[
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2115 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
2116 %%
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2117 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
2118 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
2119 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
2120 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
2121 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
2122 @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
2123 @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
2124 @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
2125 @end, 0, st_C_objend
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2126 import, C_JAVA, st_C_ignore
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2127 package, C_JAVA, st_C_ignore
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2128 friend, C_PLPL, st_C_ignore
17785
5b92f8ba5c6d Added support for the Java language.
Francesco Potortì <pot@gnu.org>
parents: 17778
diff changeset
2129 extends, C_JAVA, st_C_javastruct
5b92f8ba5c6d Added support for the Java language.
Francesco Potortì <pot@gnu.org>
parents: 17778
diff changeset
2130 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
2131 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
2132 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
2133 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
2134 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
2135 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
2136 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
2137 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
2138 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
2139 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
2140 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
2141 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
2142 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
2143 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
2144 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
2145 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
2146 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
2147 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
2148 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
2149 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
2150 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
2151 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
2152 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
2153 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
2154 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
2155 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
2156 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
2157 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
2158 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
2159 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
2160 # 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
2161 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
2162 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
2163 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
2164 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
2165 # 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
2166 # 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
2167 #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
2168 #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
2169 %]
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2170 and replace lines between %< and %> with its output,
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2171 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
2172 /*%<*/
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2173 /* 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
2174 /* 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
2175 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
2176
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2177 #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
2178 #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
2179 #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
2180 #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
2181 #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
2182 /* 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
2183
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2184 #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
2185 __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
2186 #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
2187 static unsigned int
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2188 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
2189 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
2190 register unsigned int len;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2191 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2192 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
2193 {
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2194 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
2195 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
2196 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
2197 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
2198 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
2199 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
2200 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
2201 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
2202 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
2203 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
2204 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
2205 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
2206 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
2207 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
2208 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
2209 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
2210 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
2211 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
2212 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
2213 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
2214 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
2215 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
2216 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
2217 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
2218 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
2219 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
2220 };
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2221 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
2222
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2223 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
2224 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2225 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
2226 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
2227 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
2228 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
2229 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
2230 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
2231 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
2232 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2233 return hval;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2234 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2235
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2236 #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
2237 __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
2238 #endif
35766
3584fc1b9b79 (in_word_set): Use `static' in definition (for pcc).
Dave Love <fx@gnu.org>
parents: 35758
diff changeset
2239 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
2240 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
2241 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
2242 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
2243 {
26262
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 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
2245 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2246 {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2247 {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2248 {"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
2249 {""}, {""}, {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2250 {"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
2251 {""}, {""},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2252 {"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
2253 {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2254 {"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
2255 {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2256 {"SYSCALL", 0, st_C_gnumacro},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2257 {""},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2258 {"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
2259 {""}, {""}, {""}, {""}, {""}, {""}, {""},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2260 {"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
2261 {"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
2262 {""}, {""}, {""}, {""}, {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2263 {"float", 0, st_C_typespec},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2264 {"typedef", 0, st_C_typedef},
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2265 {"typename", C_PLPL, st_C_typespec},
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2266 {""}, {""}, {""},
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2267 {"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
2268 {"volatile", 0, st_C_typespec},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2269 {""}, {""},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2270 {"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
2271 {"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
2272 {"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
2273 {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2274 {"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
2275 {"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
2276 {"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
2277 {"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
2278 {""},
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2279 {"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
2280 {"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
2281 {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2282 {"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
2283 {"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
2284 {"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
2285 {"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
2286 {"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
2287 {"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
2288 {"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
2289 {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2290 {"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
2291 {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2292 {"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
2293 {""},
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2294 {"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
2295 {"union", 0, st_C_struct},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2296 {"@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
2297 {"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
2298 {"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
2299 {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2300 {"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
2301 {"@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
2302 {"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
2303 {"double", 0, st_C_typespec},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2304 {""},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2305 {"@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
2306 {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2307 {"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
2308 {""}, {""},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2309 {"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
2310 {""}, {""}, {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2311 {"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
2312 {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2313 {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2314 {""},
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2315 {"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
2316 {""}, {""},
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2317 {"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
2318 {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""},
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2319 {"@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
2320 };
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2321
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2322 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
2323 {
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2324 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
2325
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2326 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
2327 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2328 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
2329
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2330 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
2331 return &wordlist[key];
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2332 }
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2333 }
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2334 return 0;
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2335 }
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2336 /*%>*/
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2337
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
2338 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
2339 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
2340 char *str;
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2341 int len;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2342 int c_ext;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2343 {
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
2344 register struct C_stab_entry *se = in_word_set (str, len);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2345
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2346 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
2347 return st_none;
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
2348 return se->type;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2349 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2350
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2351
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2352 /*
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2353 * 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
2354 * 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
2355 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2356 static enum
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2357 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2358 fvnone, /* nothing seen */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2359 fdefunkey, /* Emacs DEFUN keyword seen */
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2360 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
2361 foperator, /* func: operator keyword seen (cplpl) */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2362 fvnameseen, /* function or variable name seen */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2363 fstartlist, /* func: just after open parenthesis */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2364 finlist, /* func: in parameter list */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2365 flistseen, /* func: after parameter list */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2366 fignore, /* func: before open brace */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2367 vignore /* var-like: ignore until ';' */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2368 } fvdef;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2369
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2370 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
2371
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2372 /*
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2373 * 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
2374 * typdef is its state variable.
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2375 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2376 static enum
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2377 {
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
2378 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
2379 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
2380 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
2381 tinbody, /* inside typedef body */
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
2382 tend, /* just before typedef tag */
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
2383 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
2384 } typdef;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2385
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2386 /*
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2387 * 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
2388 * 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
2389 * variable.
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2390 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2391 static enum
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2392 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2393 snone, /* nothing seen yet,
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2394 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
2395 skeyseen, /* struct-like keyword seen */
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2396 stagseen, /* struct-like tag seen */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2397 sintemplate, /* inside template (ignore) */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2398 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
2399 } structdef;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
2400
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2401 /*
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2402 * 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
2403 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2404 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
2405
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2406 /*
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2407 * 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
2408 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2409 static enum
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2410 {
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2411 dnone, /* nothing seen */
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2412 dsharpseen, /* '#' seen as first char on line */
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2413 ddefineseen, /* '#' and 'define' seen */
5044
d3bd7baee39f (FUNCST, TYPEDST, STRUCTST, DEFINEST): Delete excess commas.
Richard M. Stallman <rms@gnu.org>
parents: 4937
diff changeset
2414 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
2415 } definedef;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2416
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2417 /*
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2418 * 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
2419 * 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
2420 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2421 static enum
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2422 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2423 onone, /* nothing seen */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2424 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
2425 oimplementation, /* @implementations seen */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2426 otagseen, /* class name seen */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2427 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
2428 ocatseen, /* category name seen */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2429 oinbody, /* in @implementation body */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2430 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
2431 omethodtag, /* after method name */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2432 omethodcolon, /* after method colon */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2433 omethodparm, /* after method parameter */
14230
6b836f84bccf (enum sym_type, anonymous enum): Delete final comma.
Karl Heuer <kwzh@gnu.org>
parents: 14186
diff changeset
2434 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
2435 } objdef;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2436
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2437
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2438 /*
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2439 * 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
2440 * 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
2441 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2442 static struct tok
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2443 {
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2444 bool valid;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2445 bool named;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2446 int offset;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2447 int length;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2448 int lineno;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2449 long linepos;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2450 char *line;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2451 } token; /* latest token read */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2452 static linebuffer token_name; /* its name */
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2453
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2454 /*
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2455 * 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
2456 * 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
2457 */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2458 static void pushclass_above __P((int, char *, int));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2459 static void popclass_above __P((int));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2460 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
2461
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2462 static struct {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2463 char **cname; /* nested class names */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2464 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
2465 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
2466 int size; /* length of the array */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2467 } cstack; /* stack for nested declaration tags */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2468 /* 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
2469 #define nestlev (cstack.nl)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2470 /* After struct keyword or in struct body, not inside an nested function. */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2471 #define instruct (structdef == snone && nestlev > 0 \
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2472 && cblev == cstack.cblev[nestlev-1] + 1)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2473
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2474 static void
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2475 pushclass_above (cblev, str, len)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2476 int cblev;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2477 char *str;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2478 int len;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2479 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2480 int nl;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2481
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2482 popclass_above (cblev);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2483 nl = cstack.nl;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2484 if (nl >= cstack.size)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2485 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2486 int size = cstack.size *= 2;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2487 xrnew (cstack.cname, size, char *);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2488 xrnew (cstack.cblev, size, int);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2489 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2490 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
2491 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
2492 cstack.cblev[nl] = cblev;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2493 cstack.nl = nl + 1;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2494 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2495
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2496 static void
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2497 popclass_above (cblev)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2498 int cblev;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2499 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2500 int nl;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2501
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2502 for (nl = cstack.nl - 1;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2503 nl >= 0 && cstack.cblev[nl] >= cblev;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2504 nl--)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2505 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2506 if (cstack.cname[nl] != NULL)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2507 free (cstack.cname[nl]);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2508 cstack.nl = nl;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2509 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2510 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2511
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2512 static void
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2513 write_classname (cn, qualifier)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2514 linebuffer *cn;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2515 char *qualifier;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2516 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2517 int i, len;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2518 int qlen = strlen (qualifier);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2519
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2520 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
2521 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2522 len = 0;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2523 cn->len = 0;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2524 cn->buffer[0] = '\0';
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2525 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2526 else
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2527 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2528 len = strlen (cstack.cname[0]);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2529 linebuffer_setlen (cn, len);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2530 strcpy (cn->buffer, cstack.cname[0]);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2531 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2532 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
2533 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2534 char *s;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2535 int slen;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2536
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2537 s = cstack.cname[i];
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2538 if (s == NULL)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2539 continue;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2540 slen = strlen (s);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2541 len += slen + qlen;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2542 linebuffer_setlen (cn, len);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2543 strncat (cn->buffer, qualifier, qlen);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2544 strncat (cn->buffer, s, slen);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2545 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2546 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2547
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2548
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
2549 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
2550 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
2551
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2552 /*
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2553 * consider_token ()
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2554 * 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
2555 * 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
2556 * 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
2557 *
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
2558 * *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
2559 * 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
2560 *
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2561 * Globals
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2562 * fvdef IN OUT
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2563 * structdef IN OUT
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2564 * definedef IN OUT
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2565 * typdef IN OUT
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2566 * objdef IN OUT
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2567 */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2568
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
2569 static bool
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2570 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
2571 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
2572 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
2573 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
2574 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
2575 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
2576 int parlev; /* IN: parenthesis level */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2577 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
2578 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2579 /* 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
2580 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
2581 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
2582 static enum sym_type structtype;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2583 static int structcblev;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2584 static enum sym_type toktype;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2585
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2586
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2587 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
2588
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2589 /*
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2590 * Advance the definedef state machine.
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2591 */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2592 switch (definedef)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2593 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2594 case dnone:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2595 /* 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
2596 if (toktype == st_C_gnumacro)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2597 {
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2598 fvdef = fdefunkey;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2599 return FALSE;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2600 }
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2601 break;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2602 case dsharpseen:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2603 if (toktype == st_C_define)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2604 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2605 definedef = ddefineseen;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2606 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2607 else
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2608 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2609 definedef = dignorerest;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2610 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2611 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2612 case ddefineseen:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2613 /*
9193
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
2614 * 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
2615 * and constantypedefs is FALSE.
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2616 */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2617 definedef = dignorerest;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2618 *is_func_or_var = (c == '(');
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2619 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
2620 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2621 else
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2622 return TRUE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2623 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
2624 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2625 default:
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
2626 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
2627 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2628
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2629 /*
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2630 * Now typedefs
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2631 */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2632 switch (typdef)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2633 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2634 case tnone:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2635 if (toktype == st_C_typedef)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2636 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2637 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
2638 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
2639 fvextern = FALSE;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2640 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
2641 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2642 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2643 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
2644 case tkeyseen:
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2645 switch (toktype)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2646 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2647 case st_none:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2648 case st_C_typespec:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2649 case st_C_class:
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2650 case st_C_struct:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2651 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
2652 typdef = ttypeseen;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2653 break;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2654 }
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2655 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2656 case ttypeseen:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2657 if (structdef == snone && fvdef == fvnone)
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 fvdef = fvnameseen;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2660 return TRUE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2661 }
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2662 break;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2663 case tend:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2664 switch (toktype)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2665 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2666 case st_C_typespec:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2667 case st_C_class:
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2668 case st_C_struct:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2669 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
2670 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2671 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2672 return TRUE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2673 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2674
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2675 /*
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2676 * 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
2677 * 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
2678 * 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
2679 */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2680 switch (toktype)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2681 {
17785
5b92f8ba5c6d Added support for the Java language.
Francesco Potortì <pot@gnu.org>
parents: 17778
diff changeset
2682 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
2683 if (structdef == stagseen)
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
2684 structdef = scolonseen;
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
2685 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
2686 case st_C_template:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2687 case st_C_class:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2688 if (cblev == 0
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2689 && (*c_extp & C_AUTO) /* automatic detection of C++ language */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2690 && definedef == dnone && structdef == snone
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2691 && typdef == tnone && fvdef == fvnone)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2692 *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
2693 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
2694 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2695 /* FALLTHRU */
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2696 case st_C_struct:
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2697 case st_C_enum:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2698 if (parlev == 0
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2699 && fvdef != vignore
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2700 && (typdef == tkeyseen
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2701 || (typedefs_or_cplusplus && structdef == snone)))
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2702 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2703 structdef = skeyseen;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2704 structtype = toktype;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2705 structcblev = cblev;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2706 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2707 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2708 }
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
2709
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2710 if (structdef == skeyseen)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2711 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2712 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
2713 return TRUE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2714 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2715
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2716 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
2717 definedef = dnone;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2718
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
2719 /* 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
2720 switch (objdef)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2721 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2722 case onone:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2723 switch (toktype)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2724 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2725 case st_C_objprot:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2726 objdef = oprotocol;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2727 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2728 case st_C_objimpl:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2729 objdef = oimplementation;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2730 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2731 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2732 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2733 case oimplementation:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2734 /* 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
2735 objtag = savenstr (str, len);
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2736 objdef = oinbody;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2737 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2738 case oprotocol:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2739 /* 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
2740 objtag = savenstr (str, len);
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2741 objdef = otagseen;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2742 *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
2743 return TRUE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2744 case oparenseen:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2745 objdef = ocatseen;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2746 *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
2747 return TRUE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2748 case oinbody:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2749 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2750 case omethodsign:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2751 if (parlev == 0)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2752 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2753 objdef = omethodtag;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2754 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
2755 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
2756 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
2757 return TRUE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2758 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2759 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2760 case omethodcolon:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2761 if (parlev == 0)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2762 objdef = omethodparm;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2763 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2764 case omethodparm:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2765 if (parlev == 0)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2766 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2767 objdef = omethodtag;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2768 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
2769 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
2770 return TRUE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2771 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2772 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2773 case oignore:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2774 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
2775 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2776 /* 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
2777 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
2778 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
2779 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
2780 class tags.
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2781 free (objtag); */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2782 objdef = onone;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2783 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2784 return FALSE;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2785 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
2786
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2787 /* 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
2788 switch (toktype)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2789 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2790 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
2791 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
2792 /* FALLTHRU */
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2793 case 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
2794 if (fvdef != finlist && fvdef != fignore && fvdef != 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
2795 fvdef = fvnone; /* should be useless */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2796 return FALSE;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2797 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
2798 fvextern = FALSE;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2799 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
2800 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
2801 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
2802 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
2803 *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
2804 return TRUE;
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
2805 case st_none:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2806 if (constantypedefs
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2807 && structdef == snone
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2808 && structtype == st_C_enum && cblev > structcblev)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2809 return TRUE; /* enum constant */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2810 switch (fvdef)
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2811 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2812 case fdefunkey:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2813 if (cblev > 0)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2814 break;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2815 fvdef = fdefunname; /* GNU macro */
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2816 *is_func_or_var = TRUE;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2817 return TRUE;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2818 case fvnone:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2819 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
2820 || (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
2821 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2822 fvdef = vignore;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2823 return FALSE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2824 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2825 if ((*c_extp & C_PLPL) && strneq (str+len-10, "::operator", 10))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2826 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2827 fvdef = foperator;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2828 *is_func_or_var = TRUE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2829 return TRUE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2830 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2831 if (cblev > 0 && !instruct)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2832 break;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2833 fvdef = fvnameseen; /* function or variable */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2834 *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
2835 return TRUE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2836 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2837 break;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2838 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2839
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
2840 return FALSE;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2841 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2842
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2843
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2844 /*
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2845 * 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
2846 * 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
2847 * them at end of line, it is possible to use those pointers.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2848 */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
2849 static struct
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2850 {
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2851 long linepos;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2852 linebuffer lb;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2853 } lbs[2];
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2854
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2855 #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
2856 #define switch_line_buffers() (curndx = 1 - curndx)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2857
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2858 #define curlb (lbs[curndx].lb)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2859 #define newlb (lbs[newndx].lb)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2860 #define curlinepos (lbs[curndx].linepos)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2861 #define newlinepos (lbs[newndx].linepos)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2862
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2863 #define CNL_SAVE_DEFINEDEF() \
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2864 do { \
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2865 curlinepos = charno; \
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2866 lineno++; \
15243
c024dca549c5 * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
Francesco Potortì <pot@gnu.org>
parents: 14982
diff changeset
2867 linecharno = charno; \
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2868 charno += readline (&curlb, inf); \
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2869 lp = curlb.buffer; \
2004
6469a137fea6 (C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents: 1938
diff changeset
2870 quotednl = FALSE; \
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2871 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
2872 } while (0)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2873
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2874 #define CNL() \
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2875 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
2876 CNL_SAVE_DEFINEDEF(); \
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2877 if (savetoken.valid) \
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2878 { \
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2879 token = savetoken; \
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2880 savetoken.valid = FALSE; \
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
2881 } \
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2882 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
2883 } while (0)
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2884
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
2885
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
2886 static void
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2887 make_C_tag (isfun)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2888 bool isfun;
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
2889 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2890 /* 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
2891 we must protect against invalid input or internal errors. */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2892 if (DEBUG || token.valid)
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
2893 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2894 if (traditional_tag_style)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2895 {
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2896 /* This was the original code. Now we call new_pfnote instead,
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2897 which uses the new method for naming tags (see new_pfnote). */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2898 char *name = NULL;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2899
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2900 if (CTAGS || token.named)
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2901 name = savestr (token_name.buffer);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2902 if (DEBUG && !token.valid)
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2903 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2904 if (token.named)
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2905 name = concat (name, "##invalid##", "");
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2906 else
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2907 name = savestr ("##invalid##");
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2908 }
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2909 pfnote (name, isfun, token.line,
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2910 token.offset+token.length+1, token.lineno, token.linepos);
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2911 }
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2912 else
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2913 new_pfnote (token_name.buffer, token_name.len, isfun, token.line,
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2914 token.offset+token.length+1, token.lineno, token.linepos);
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2915 token.valid = FALSE;
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
2916 }
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
2917 }
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
2918
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2919
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2920 /*
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2921 * C_entries ()
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2922 * This routine finds functions, variables, typedefs,
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2923 * #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
2924 * 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
2925 */
27658
5980f19581dc (pfnote, new_pfnote, C_entries, prolog_pred, erlang_func): Add
Dave Love <fx@gnu.org>
parents: 27595
diff changeset
2926 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
2927 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
2928 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
2929 FILE *inf; /* input file */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2930 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2931 register char c; /* latest char read; '\0' for end of line */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2932 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
2933 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
2934 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
2935 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
2936 char *qualifier; /* string used to qualify names */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2937 int qlen; /* length of qualifier */
4051
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
2938 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
2939 int parlev; /* current parenthesis level */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2940 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
2941 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
2942 bool cplpl, cjava;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2943 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
2944 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
2945
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2946
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2947 initbuffer (&token_name);
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2948 initbuffer (&lbs[0].lb);
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2949 initbuffer (&lbs[1].lb);
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2950 if (cstack.size == 0)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2951 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2952 cstack.size = (DEBUG) ? 1 : 4;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2953 cstack.nl = 0;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2954 cstack.cname = xnew (cstack.size, char *);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2955 cstack.cblev = xnew (cstack.size, int);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
2956 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2957
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
2958 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
2959 curndx = newndx = 0;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2960 lineno = 0;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2961 charno = 0;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2962 lp = curlb.buffer;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2963 *lp = 0;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2964
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
2965 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
2966 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
2967 yacc_rules = FALSE;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2968 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
2969 token.valid = savetoken.valid = FALSE;
4051
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
2970 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
2971 parlev = 0;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2972 cplpl = (c_ext & C_PLPL) == C_PLPL;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2973 cjava = (c_ext & C_JAVA) == C_JAVA;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2974 if (cjava)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2975 { qualifier = "."; qlen = 1; }
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2976 else
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
2977 { qualifier = "::"; qlen = 2; }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2978
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
2979
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2980 while (!feof (inf))
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2981 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2982 c = *lp++;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2983 if (c == '\\')
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2984 {
621
eca8812e61cd *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 462
diff changeset
2985 /* 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
2986 '\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
2987 to read the next line. */
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2988 if (*lp == '\0')
2004
6469a137fea6 (C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents: 1938
diff changeset
2989 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2990 quotednl = TRUE;
2004
6469a137fea6 (C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents: 1938
diff changeset
2991 continue;
6469a137fea6 (C_entries): New local variable quotednl. Used for
Richard M. Stallman <rms@gnu.org>
parents: 1938
diff changeset
2992 }
401
24b63d6679b6 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 240
diff changeset
2993 lp++;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2994 c = ' ';
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2995 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2996 else if (incomm)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2997 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
2998 switch (c)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2999 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3000 case '*':
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3001 if (*lp == '/')
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3002 {
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3003 c = *lp++;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3004 incomm = FALSE;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3005 }
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3006 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3007 case '\0':
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3008 /* 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
3009 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
3010 CNL_SAVE_DEFINEDEF ();
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3011 break;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3012 }
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3013 continue;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3014 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3015 else if (inquote)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3016 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3017 switch (c)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3018 {
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3019 case '"':
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3020 inquote = FALSE;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3021 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3022 case '\0':
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3023 /* 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
3024 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
3025 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
3026 CNL_SAVE_DEFINEDEF ();
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3027 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3028 }
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3029 continue;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3030 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3031 else if (inchar)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3032 {
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3033 switch (c)
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3034 {
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3035 case '\0':
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3036 /* 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
3037 CNL ();
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3038 /* FALLTHRU */
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3039 case '\'':
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3040 inchar = FALSE;
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3041 break;
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
3042 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3043 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3044 }
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
3045 else
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3046 switch (c)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3047 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3048 case '"':
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3049 inquote = TRUE;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3050 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
3051 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3052 case fdefunkey:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3053 case fstartlist:
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3054 case finlist:
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3055 case fignore:
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3056 case vignore:
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3057 break;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3058 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
3059 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
3060 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
3061 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3062 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3063 case '\'':
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3064 inchar = TRUE;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3065 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
3066 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3067 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
3068 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
3069 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3070 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3071 case '/':
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3072 if (*lp == '*')
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3073 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3074 lp++;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3075 incomm = TRUE;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3076 continue;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3077 }
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3078 else if (/* cplpl && */ *lp == '/')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3079 {
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3080 c = '\0';
727
540b047ece4d *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 621
diff changeset
3081 break;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3082 }
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
3083 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
3084 break;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3085 case '%':
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3086 if ((c_ext & YACC) && *lp == '%')
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3087 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3088 /* 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
3089 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
3090 definedef = dnone; fvdef = fvnone; fvextern = FALSE;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3091 typdef = tnone; structdef = snone;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3092 midtoken = inquote = inchar = incomm = quotednl = FALSE;
4051
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
3093 cblev = 0;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3094 yacc_rules = !yacc_rules;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3095 continue;
4051
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
3096 }
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 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
3098 break;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3099 case '#':
9193
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3100 if (definedef == dnone)
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3101 {
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3102 char *cp;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3103 bool cpptoken = TRUE;
9193
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3104
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3105 /* 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
3106 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
3107 token. */
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3108 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
3109 if (!iswhite (*cp))
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3110 {
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3111 if (*cp == '*' && *(cp+1) == '/')
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3112 {
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3113 cp++;
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3114 cpptoken = TRUE;
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3115 }
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3116 else
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3117 cpptoken = FALSE;
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3118 }
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3119 if (cpptoken)
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3120 definedef = dsharpseen;
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3121 } /* if (definedef == dnone) */
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3122
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3123 continue;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3124 } /* switch (c) */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3125
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3126
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3127 /* 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
3128 if (typdef != tignore
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3129 && definedef != dignorerest
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3130 && fvdef != finlist
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3131 && structdef != sintemplate
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3132 && (definedef != dnone
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3133 || structdef != scolonseen))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3134 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3135 if (midtoken)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3136 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3137 if (endtoken (c))
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3138 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3139 if (c == ':' && cplpl && *lp == ':' && begtoken (lp[1]))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3140 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3141 /*
9193
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3142 * This handles :: in the middle, but not at the
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3143 * beginning of an identifier. Also, space-separated
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3144 * :: is not recognised.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3145 */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3146 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
3147 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
3148 c = lp[-1];
35758
aa069bbee4c8 Work around small preprocessor bugs in sunos4 pcc and MinGW.
Francesco Potortì <pot@gnu.org>
parents: 35741
diff changeset
3149 goto still_in_token;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3150 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3151 else
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3152 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3153 bool funorvar = FALSE;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3154
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3155 if (yacc_rules
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3156 || 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
3157 &c_ext, cblev, parlev, &funorvar))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3158 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3159 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
3160 {
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 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
3162 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
3163 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
3164 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
3165 while (*lp != '\0'
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
3166 && !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
3167 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
3168 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
3169 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
3170 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3171 token.named = FALSE;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3172 if ((c_ext & C_EXT) /* not pure C */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3173 && nestlev > 0 && definedef == dnone)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3174 /* 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
3175 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3176 write_classname (&token_name, qualifier);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3177 linebuffer_setlen (&token_name,
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3178 token_name.len+qlen+toklen);
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3179 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
3180 strncat (token_name.buffer,
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3181 newlb.buffer + tokoff, toklen);
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3182 token.named = TRUE;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3183 }
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3184 else if (objdef == ocatseen)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3185 /* Objective C category */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3186 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3187 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
3188 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
3189 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
3190 strcat (token_name.buffer, "(");
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3191 strncat (token_name.buffer,
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3192 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
3193 strcat (token_name.buffer, ")");
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3194 token.named = TRUE;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3195 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3196 else if (objdef == omethodtag
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3197 || objdef == omethodparm)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3198 /* Objective C method */
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3199 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3200 token.named = TRUE;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3201 }
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3202 else if (fvdef == fdefunname)
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3203 /* GNU DEFUN and similar macros */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3204 {
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3205 bool defun = (newlb.buffer[tokoff] == 'F');
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3206 int off = tokoff;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3207 int len = toklen;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3208
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3209 /* 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
3210 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
3211 if (defun)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3212 {
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3213 off += 1;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3214 len -= 1;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3215 }
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3216 len = toklen;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3217 linebuffer_setlen (&token_name, len);
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3218 strncpy (token_name.buffer,
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3219 newlb.buffer + off, len);
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3220 token_name.buffer[len] = '\0';
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3221 if (defun)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3222 while (--len >= 0)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3223 if (token_name.buffer[len] == '_')
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3224 token_name.buffer[len] = '-';
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3225 token.named = defun;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3226 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3227 else
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3228 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3229 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
3230 strncpy (token_name.buffer,
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3231 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
3232 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
3233 /* Name macros and members. */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3234 token.named = (structdef == stagseen
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3235 || typdef == ttypeseen
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3236 || typdef == tend
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3237 || (funorvar
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3238 && definedef == dignorerest)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3239 || (funorvar
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3240 && definedef == dnone
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3241 && structdef == snone
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3242 && cblev > 0));
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3243 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3244 token.lineno = lineno;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3245 token.offset = tokoff;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3246 token.length = toklen;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3247 token.line = newlb.buffer;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3248 token.linepos = newlinepos;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3249 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
3250
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
3251 if (definedef == dnone
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3252 && (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
3253 || 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
3254 || structdef == stagseen
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3255 || typdef == tend
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3256 || typdef == ttypeseen
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3257 || objdef != onone))
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3258 {
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
3259 if (current_lb_is_new)
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
3260 switch_line_buffers ();
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3261 }
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3262 else if (definedef != dnone
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3263 || fvdef == fdefunname
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3264 || instruct)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3265 make_C_tag (funorvar);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3266 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3267 midtoken = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3268 }
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3269 } /* if (endtoken (c)) */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3270 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
3271 still_in_token:
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3272 {
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3273 toklen++;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3274 continue;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3275 }
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3276 } /* if (midtoken) */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3277 else if (begtoken (c))
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3278 {
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
3279 switch (definedef)
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3280 {
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
3281 case dnone:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3282 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
3283 {
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
3284 case fstartlist:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3285 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
3286 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
3287 case flistseen:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3288 make_C_tag (TRUE); /* a function */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3289 fvdef = fignore;
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
3290 break;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3291 case fvnameseen:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3292 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
3293 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
3294 }
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
3295 if (structdef == stagseen && !cjava)
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3296 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3297 popclass_above (cblev);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3298 structdef = snone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3299 }
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3300 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
3301 case dsharpseen:
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3302 savetoken = token;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3303 }
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3304 if (!yacc_rules || lp == newlb.buffer + 1)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3305 {
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3306 tokoff = lp - 1 - newlb.buffer;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3307 toklen = 1;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3308 midtoken = TRUE;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3309 }
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3310 continue;
10623
8a73e71a55e3 * etags.c (pfnote): Initialise been_warned in the node.
Francesco Potortì <pot@gnu.org>
parents: 10449
diff changeset
3311 } /* if (begtoken) */
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3312 } /* if must look at token */
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3313
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3314
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3315 /* 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
3316 after having handled a token.*/
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3317 switch (c)
401
24b63d6679b6 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 240
diff changeset
3318 {
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3319 case ':':
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3320 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
3321 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3322 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
3323 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3324 }
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
3325 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
3326 break;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3327 switch (objdef)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3328 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3329 case otagseen:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3330 objdef = oignore;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3331 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
3332 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3333 case omethodtag:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3334 case omethodparm:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3335 objdef = omethodcolon;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3336 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
3337 strcat (token_name.buffer, ":");
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3338 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3339 }
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3340 if (structdef == stagseen)
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3341 structdef = scolonseen;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3342 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3343 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
3344 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
3345 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3346 switch (typdef)
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
3347 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3348 case tend:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3349 case ttypeseen:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3350 make_C_tag (FALSE); /* a typedef */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3351 typdef = tnone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3352 fvdef = fvnone;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3353 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3354 case tnone:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3355 case tinbody:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3356 case tignore:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3357 switch (fvdef)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3358 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3359 case fignore:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3360 if (typdef == tignore)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3361 fvdef = fvnone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3362 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3363 case fvnameseen:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3364 if ((globals && cblev == 0 && (!fvextern || declarations))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3365 || (members && instruct))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3366 make_C_tag (FALSE); /* a variable */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3367 fvextern = FALSE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3368 fvdef = fvnone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3369 token.valid = FALSE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3370 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3371 case flistseen:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3372 if ((declarations && typdef == tnone && !instruct)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3373 || (members && typdef != tignore && instruct))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3374 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
3375 /* FALLTHRU */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3376 default:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3377 fvextern = FALSE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3378 fvdef = fvnone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3379 if (declarations
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3380 && structdef == stagseen && (c_ext & C_PLPL))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3381 make_C_tag (FALSE); /* forward declaration */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3382 else
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3383 /* The following instruction invalidates the token.
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3384 Probably the token should be invalidated in all other
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3385 cases where some state machine is reset prematurely. */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3386 token.valid = FALSE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3387 } /* switch (fvdef) */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3388 /* FALLTHRU */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3389 default:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3390 if (!instruct)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3391 typdef = tnone;
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
3392 }
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3393 if (structdef == stagseen)
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3394 structdef = snone;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3395 break;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3396 case ',':
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3397 if (definedef != dnone)
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3398 break;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3399 switch (objdef)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3400 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3401 case omethodtag:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3402 case omethodparm:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3403 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
3404 objdef = oinbody;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3405 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3406 }
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3407 switch (fvdef)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3408 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3409 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
3410 case foperator:
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3411 case fstartlist:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3412 case finlist:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3413 case fignore:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3414 case vignore:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3415 break;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3416 case fdefunname:
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3417 fvdef = fignore;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3418 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3419 case fvnameseen: /* a variable */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3420 if ((globals && cblev == 0 && (!fvextern || declarations))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3421 || (members && instruct))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3422 make_C_tag (FALSE);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3423 break;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3424 case flistseen: /* a function */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3425 if ((declarations && typdef == tnone && !instruct)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3426 || (members && typdef != tignore && instruct))
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3427 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3428 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
3429 fvdef = fvnameseen;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3430 }
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3431 else if (!declarations)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3432 fvdef = fvnone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3433 token.valid = FALSE;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3434 break;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3435 default:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3436 fvdef = fvnone;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3437 }
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3438 if (structdef == stagseen)
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3439 structdef = snone;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3440 break;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3441 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
3442 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
3443 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3444 if (structdef == stagseen)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3445 structdef = snone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3446 switch (typdef)
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3447 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3448 case ttypeseen:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3449 case tend:
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3450 typdef = tignore;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3451 make_C_tag (FALSE); /* a typedef */
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3452 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3453 case tnone:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3454 case tinbody:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3455 switch (fvdef)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3456 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3457 case foperator:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3458 case finlist:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3459 case fignore:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3460 case vignore:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3461 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3462 case fvnameseen:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3463 if ((members && cblev == 1)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3464 || (globals && cblev == 0
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3465 && (!fvextern || declarations)))
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3466 make_C_tag (FALSE); /* a variable */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3467 /* FALLTHRU */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3468 default:
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3469 fvdef = fvnone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3470 }
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3471 break;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3472 }
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3473 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3474 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
3475 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
3476 break;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3477 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
3478 objdef = oparenseen;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3479 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
3480 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3481 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
3482 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
3483 && *lp != '*'
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3484 && !instruct)
9193
86fd33a4f327 * etags.c (C_entries): Recognise typedef of ANSI style functions.
Francesco Potortì <pot@gnu.org>
parents: 8789
diff changeset
3485 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3486 /* 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
3487 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
3488 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
3489 typdef = tignore;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3490 fvdef = fignore;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3491 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
3492 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3493 /* 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
3494 case foperator:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3495 fvdef = fstartlist;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3496 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3497 case flistseen:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3498 fvdef = finlist;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3499 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
3500 }
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
3501 parlev++;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3502 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3503 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
3504 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
3505 break;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3506 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
3507 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3508 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
3509 objdef = oignore;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3510 }
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
3511 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
3512 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3513 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
3514 {
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
3515 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
3516 case finlist:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3517 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
3518 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
3519 }
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3520 if (!instruct
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3521 && (typdef == tend
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3522 || typdef == ttypeseen))
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3523 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3524 typdef = tignore;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3525 make_C_tag (FALSE); /* a typedef */
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3526 }
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
3527 }
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
3528 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
3529 parlev = 0;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3530 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3531 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
3532 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
3533 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
3534 if (typdef == ttypeseen)
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3535 {
36361
e9d69d45eae4 When in autodetect mode, switch to C++ when the template keyword is met
Francesco Potortì <pot@gnu.org>
parents: 35775
diff changeset
3536 /* 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
3537 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
3538 typdef = tinbody;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3539 typdefcblev = cblev;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3540 }
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3541 switch (fvdef)
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3542 {
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3543 case flistseen:
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3544 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
3545 /* FALLTHRU */
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3546 case fignore:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3547 fvdef = fvnone;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
3548 break;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3549 case fvnone:
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3550 switch (objdef)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3551 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3552 case otagseen:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3553 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
3554 objdef = oignore;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3555 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3556 case omethodtag:
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3557 case omethodparm:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3558 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
3559 objdef = oinbody;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3560 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3561 default:
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
3562 /* Neutralize `extern "C" {' grot. */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3563 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
3564 && typdef == tnone)
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3565 cblev = -1;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3566 }
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3567 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3568 switch (structdef)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3569 {
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3570 case skeyseen: /* unnamed struct */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3571 pushclass_above (cblev, NULL, 0);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3572 structdef = snone;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3573 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3574 case stagseen: /* named struct or enum */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3575 case scolonseen: /* a class */
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3576 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
3577 structdef = snone;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3578 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
3579 break;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3580 }
4051
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
3581 cblev++;
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
3582 break;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3583 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
3584 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
3585 break;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3586 if (fvdef == fstartlist)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3587 fvdef = fvnone; /* avoid tagging `foo' in `foo (*bar()) ()' */
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3588 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3589 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
3590 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
3591 break;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3592 if (!noindentypedefs && 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
3593 {
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
3594 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
3595 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
3596 }
4051
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
3597 else if (cblev > 0)
73aa16fc728d (consider_token): was `==', now is `='.
Richard M. Stallman <rms@gnu.org>
parents: 3921
diff changeset
3598 cblev--;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3599 popclass_above (cblev);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3600 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
3601 /* 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
3602 if (typdef == tinbody && cblev <= typdefcblev)
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3603 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3604 assert (cblev == typdefcblev);
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3605 typdef = tend;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3606 }
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3607 break;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3608 case '=':
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3609 if (definedef != dnone)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3610 break;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3611 switch (fvdef)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3612 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3613 case foperator:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3614 case finlist:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3615 case fignore:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3616 case vignore:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3617 break;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3618 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
3619 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
3620 || (globals && cblev == 0 && (!fvextern || declarations)))
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3621 make_C_tag (FALSE); /* a variable */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3622 /* FALLTHRU */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3623 default:
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3624 fvdef = vignore;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3625 }
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3626 break;
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3627 case '<':
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3628 if (cplpl && structdef == stagseen)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3629 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3630 structdef = sintemplate;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3631 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3632 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3633 goto resetfvdef;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3634 case '>':
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3635 if (structdef == sintemplate)
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3636 {
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3637 structdef = stagseen;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3638 break;
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3639 }
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3640 goto resetfvdef;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3641 case '+':
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3642 case '-':
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3643 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
3644 {
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3645 objdef = omethodsign;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3646 break;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3647 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3648 /* FALLTHRU */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3649 resetfvdef:
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3650 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
3651 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
3652 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
3653 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
3654 /* 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
3655 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
3656 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3657 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
3658 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
3659 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
3660 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
3661 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
3662 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
3663 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
3664 }
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
3665 break;
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3666 case '\0':
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3667 if (objdef == otagseen)
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3668 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3669 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
3670 objdef = oignore;
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3671 }
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3672 /* 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
3673 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
3674 CNL_SAVE_DEFINEDEF ();
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3675 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
3676 CNL ();
2323
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3677 break;
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3678 } /* switch (c) */
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3679
626d9ac52bc9 (YACC): flag added to c_ext.
Richard M. Stallman <rms@gnu.org>
parents: 2004
diff changeset
3680 } /* while not eof */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3681
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3682 free (token_name.buffer);
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3683 free (lbs[0].lb.buffer);
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3684 free (lbs[1].lb.buffer);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3685 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3686
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3687 /*
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3688 * 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
3689 * 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
3690 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3691 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
3692 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
3693 FILE *inf;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3694 {
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3695 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
3696 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3697
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
3698 /* 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
3699 static void
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3700 plain_C_entries (inf)
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3701 FILE *inf;
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3702 {
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3703 C_entries (0, inf);
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3704 }
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3705
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3706 /* Always do C++. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3707 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
3708 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
3709 FILE *inf;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3710 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3711 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
3712 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3713
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
3714 /* Always do Java. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3715 static void
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3716 Cjava_entries (inf)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
3717 FILE *inf;
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
3718 {
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
3719 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
3720 }
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
3721
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3722 /* Always do C*. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3723 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
3724 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
3725 FILE *inf;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3726 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3727 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
3728 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3729
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3730 /* Always do Yacc. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3731 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
3732 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
3733 FILE *inf;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3734 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
3735 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
3736 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3737
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3738
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
3739 /* 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
3740 #define LOOP_ON_INPUT_LINES(file_pointer, line_buffer, char_pointer) \
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3741 for (lineno = charno = 0; /* loop initialization */ \
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3742 !feof (file_pointer) /* loop test */ \
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3743 && (lineno++, /* instructions at start of loop */ \
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3744 linecharno = charno, \
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3745 charno += readline (&line_buffer, file_pointer), \
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3746 char_pointer = 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
3747 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
3748 )
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
3749 #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
3750 (strneq ((cp), keyword, sizeof(keyword)-1) /* cp points at keyword */ \
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3751 && notinname ((cp)[sizeof(keyword)-1]) /* end of keyword */ \
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3752 && ((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
3753
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3754 /*
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3755 * 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
3756 * 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
3757 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3758 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
3759 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
3760 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
3761 {
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 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
3763
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3764 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
3765 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
3766 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3767
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3768
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3769 /* Fortran parsing */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3770
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3771 static void F_takeprec __P((void));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3772 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
3773
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3774 static void
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3775 F_takeprec ()
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3776 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3777 dbp = skip_spaces (dbp);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3778 if (*dbp != '*')
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3779 return;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3780 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
3781 dbp = skip_spaces (dbp);
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3782 if (strneq (dbp, "(*)", 3))
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3783 {
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3784 dbp += 3;
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3785 return;
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3786 }
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
3787 if (!ISDIGIT (*dbp))
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3788 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3789 --dbp; /* force failure */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3790 return;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3791 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3792 do
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3793 dbp++;
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
3794 while (ISDIGIT (*dbp));
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3795 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3796
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3797 static void
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3798 F_getit (inf)
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3799 FILE *inf;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3800 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3801 register char *cp;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3802
26262
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 dbp = skip_spaces (dbp);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3804 if (*dbp == '\0')
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3805 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3806 lineno++;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3807 linecharno = charno;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3808 charno += readline (&lb, inf);
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3809 dbp = lb.buffer;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3810 if (dbp[5] != '&')
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3811 return;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3812 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
3813 dbp = skip_spaces (dbp);
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3814 }
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
3815 if (!ISALPHA (*dbp) && *dbp != '_' && *dbp != '$')
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3816 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
3817 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
3818 continue;
20788
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
3819 pfnote (savenstr (dbp, cp-dbp), TRUE,
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
3820 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
3821 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3822
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3823
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3824 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3825 Fortran_functions (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3826 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3827 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3828 LOOP_ON_INPUT_LINES (inf, lb, dbp)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3829 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3830 if (*dbp == '%')
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3831 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
3832 dbp = skip_spaces (dbp);
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
3833 if (*dbp == '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3834 continue;
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3835 switch (lowcase (*dbp))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3836 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3837 case 'i':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3838 if (nocase_tail ("integer"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3839 F_takeprec ();
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3840 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3841 case 'r':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3842 if (nocase_tail ("real"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3843 F_takeprec ();
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3844 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3845 case 'l':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3846 if (nocase_tail ("logical"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3847 F_takeprec ();
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3848 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3849 case 'c':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3850 if (nocase_tail ("complex") || nocase_tail ("character"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3851 F_takeprec ();
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3852 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3853 case 'd':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3854 if (nocase_tail ("double"))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3855 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3856 dbp = skip_spaces (dbp);
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
3857 if (*dbp == '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3858 continue;
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3859 if (nocase_tail ("precision"))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3860 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3861 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3862 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3863 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3864 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3865 dbp = skip_spaces (dbp);
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
3866 if (*dbp == '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3867 continue;
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
3868 switch (lowcase (*dbp))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3869 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3870 case 'f':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3871 if (nocase_tail ("function"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3872 F_getit (inf);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3873 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3874 case 's':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3875 if (nocase_tail ("subroutine"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3876 F_getit (inf);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3877 continue;
1026
cc96e2df9b71 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 774
diff changeset
3878 case 'e':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3879 if (nocase_tail ("entry"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3880 F_getit (inf);
1026
cc96e2df9b71 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 774
diff changeset
3881 continue;
20788
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
3882 case 'b':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3883 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
3884 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3885 dbp = skip_spaces (dbp);
20788
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
3886 if (*dbp == '\0') /* assume un-named */
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3887 pfnote (savestr ("blockdata"), 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
3888 lb.buffer, dbp - lb.buffer, lineno, linecharno);
20788
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
3889 else
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3890 F_getit (inf); /* look for name */
20788
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
3891 }
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
3892 continue;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3893 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3894 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3895 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3896
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3897
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
3898 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3899 * Ada parsing
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3900 * Original code by
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
3901 * Philippe Waroquiers <philippe.waroquiers@eurocontrol.be> (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
3902 */
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
3903
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3904 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
3905
26262
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 /* 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
3907 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
3908 static void
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3909 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
3910 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
3911 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
3912 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3913 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
3914 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
3915 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
3916
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3917 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
3918 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3919 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
3920 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
3921 || (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
3922 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3923 lineno++;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3924 linecharno = charno;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3925 charno += readline (&lb, 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
3926 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
3927 }
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3928 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
3929 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3930 case 'b':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3931 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
3932 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3933 /* 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
3934 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
3935 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
3936 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
3937 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3938 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
3939 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
3940 /* Skipping type of task type or protected type ... */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
3941 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
3942 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
3943 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
3944 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3945 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
3946 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3947 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
3948 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
3949 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
3950 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3951 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
3952 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3953 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
3954 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
3955 (*cp != '\0'
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
3956 && (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
3957 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
3958 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
3959 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
3960 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
3961 }
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 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
3963 *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
3964 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
3965 *cp = 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
3966 pfnote (name, TRUE, lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
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 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
3968 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
3969 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
3970 }
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 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3972
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
3973 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
3974 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
3975 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
3976 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3977 bool 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
3978
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3979 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
3980 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3981 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
3982 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3983 /* 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
3984 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
3985 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3986 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
3987 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
3988 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3989 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
3990 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
3991 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
3992 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3993 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
3994 {
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 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
3996 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
3997 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3998 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
3999
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4000 /* 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
4001 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
4002 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
4003
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 /* 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
4005 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
4006 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
4007 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4008 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
4009 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
4010 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
4011 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
4012 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4013
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4014 /* 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
4015 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
4016 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4017 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
4018 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
4019 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4020
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4021 /* We are at the beginning of a token. */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4022 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
4023 {
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 case 'f':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4025 if (!packages_only && nocase_tail ("function"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4026 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
4027 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
4028 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
4029 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
4030 case 'p':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4031 if (!packages_only && nocase_tail ("procedure"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4032 Ada_getit (inf, "/p");
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4033 else if (nocase_tail ("package"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4034 Ada_getit (inf, "/s");
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4035 else if (nocase_tail ("protected")) /* protected type */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4036 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
4037 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
4038 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
4039 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
4040 case 't':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4041 if (!packages_only && nocase_tail ("task"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4042 Ada_getit (inf, "/k");
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4043 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
4044 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4045 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
4046 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
4047 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
4048 }
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 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
4050 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
4051 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
4052 }
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
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 /* 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
4055 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
4056 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
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 } /* 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
4059 } /* 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
4060 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4061
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4062
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 /*
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4064 * Unix and microcontroller assembly tag handling
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4065 * Labels: /^[a-zA-Z_.$][a-zA_Z0-9_.$]*[: ^I^J]/
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4066 * 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
4067 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4068 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4069 Asm_labels (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4070 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4071 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4072 register char *cp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4073
26262
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 LOOP_ON_INPUT_LINES (inf, lb, cp)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4075 {
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4076 /* 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
4077 following identifier. */
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
4078 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
4079 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4080 /* Read past label. */
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4081 cp++;
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
4082 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
4083 cp++;
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
4084 if (*cp == ':' || iswhite (*cp))
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4085 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4086 /* Found end of label, so copy it and add it to the table. */
20788
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
4087 pfnote (savenstr(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
4088 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
4089 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4090 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4091 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4092 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4093
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4094
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4095 /*
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4096 * Perl support
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4097 * 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
4098 * Perl variable names: /^(my|local).../
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4099 * Original code by Bart Robinson <lomew@cs.utah.edu> (1995)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4100 * Additions by Michael Ernst <mernst@alum.mit.edu> (1997)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4101 * 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
4102 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4103 static void
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4104 Perl_functions (inf)
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4105 FILE *inf;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4106 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4107 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
4108 register char *cp;
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4109
26262
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 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
4111 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4112 skip_spaces(cp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4113
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4114 if (LOOKING_AT (cp, "package"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4115 {
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4116 free (package);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4117 package = get_tag (cp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4118 if (package == NULL) /* can't parse package name */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4119 package = savestr ("");
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4120 else
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4121 package = savestr(package); /* make a copy */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4122 }
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4123 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
4124 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4125 char *name, *fullname, *pos;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4126 char *sp = cp;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4127
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4128 while (!notinname (*cp))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4129 cp++;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4130 if (cp == sp)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4131 continue;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4132 name = savenstr (sp, cp-sp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4133 if ((pos = etags_strchr (name, ':')) != NULL && pos[1] == ':')
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4134 fullname = name;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4135 else
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4136 fullname = concat (package, "::", name);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4137 pfnote (fullname, TRUE,
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4138 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4139 if (name != fullname)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4140 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
4141 }
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 else if (globals /* only if tagging global vars is enabled */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4143 && (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
4144 {
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 /* After "my" or "local", but before any following paren or space. */
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 char *varname = 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
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 if (*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
4149 {
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 char* varstart = ++cp;
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
4151 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
4152 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
4153 varname = savenstr (varstart, cp-varstart);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4154 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4155 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
4156 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4157 /* 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
4158 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
4159 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
4160 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
4161 }
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
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 /* Perhaps I should back cp up one character, so the TAGS table
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 doesn't mention (and so depend upon) the following char. */
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
4165 pfnote (varname, FALSE,
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
4166 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
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 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4170
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4171
26262
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 /*
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4173 * Python support
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4174 * 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
4175 * 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
4176 * 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
4177 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4178 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
4179 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
4180 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
4181 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4182 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
4183
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4184 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
4185 {
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4186 cp = skip_spaces (cp);
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4187 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
4188 {
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4189 char *name = cp;
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4190 while (!notinname (*cp) && *cp != ':')
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4191 cp++;
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4192 pfnote (savenstr (name, cp-name), TRUE,
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4193 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4194 }
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4195 }
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4196 }
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4197
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4198
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4199 /*
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4200 * PHP support
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4201 * Look for:
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4202 * - /^[ \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
4203 * - /^[ \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
4204 * - /^[ \t]*define\(\"[^\"]+/
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4205 * Only with --members:
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4206 * - /^[ \t]*var[ \t\n]+\$[^ \t\n=;]/
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4207 * 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
4208 */
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4209 static void
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4210 PHP_functions (inf)
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4211 FILE *inf;
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4212 {
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4213 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
4214 bool search_identifier = FALSE;
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4215
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4216 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
4217 {
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4218 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
4219 name = cp;
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4220 if (search_identifier
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4221 && *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
4222 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4223 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
4224 cp++;
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4225 pfnote (savenstr (name, cp-name), TRUE,
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4226 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
4227 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
4228 }
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4229 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
4230 {
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4231 if(*cp == '&')
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4232 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
4233 if(*cp != '\0')
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4234 {
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4235 name = cp;
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4236 while (!notinname (*cp))
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4237 cp++;
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4238 pfnote (savenstr (name, cp-name), TRUE,
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4239 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4240 }
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4241 else
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4242 search_identifier = TRUE;
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4243 }
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4244 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
4245 {
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4246 if (*cp != '\0')
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4247 {
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4248 name = cp;
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4249 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
4250 cp++;
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4251 pfnote (savenstr (name, cp-name), FALSE,
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4252 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4253 }
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4254 else
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4255 search_identifier = TRUE;
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4256 }
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4257 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
4258 && (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
4259 && *cp++ == '('
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4260 && (*cp == '"' || *cp == '\''))
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4261 {
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4262 char quote = *cp++;
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4263 name = cp;
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4264 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
4265 cp++;
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4266 pfnote (savenstr (name, cp-name), FALSE,
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4267 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4268 }
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4269 else if (members
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4270 && LOOKING_AT (cp, "var")
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4271 && *cp == '$')
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4272 {
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4273 name = cp;
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4274 while (!notinname(*cp))
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4275 cp++;
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4276 pfnote (savenstr (name, cp-name), FALSE,
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4277 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4278 }
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4279 }
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4280 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4281
13404
9d6c77b66cfb * etags.c (get_lang_from_name, get_lang_from_interpreter,
Francesco Potortì <pot@gnu.org>
parents: 13380
diff changeset
4282
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4283 /*
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4284 * Cobol tag functions
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4285 * 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
4286 * 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
4287 * Idea by Corny de Souza (1993)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4288 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4289 static void
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4290 Cobol_paragraphs (inf)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4291 FILE *inf;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4292 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4293 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
4294
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4295 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
4296 {
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4297 if (lb.len < 9)
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4298 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
4299 bp += 8;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4300
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4301 /* 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
4302 if (bp[-1] != ' ' || !ISALNUM (bp[0]))
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4303 continue;
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4304
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
4305 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
4306 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
4307 if (*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
4308 pfnote (savenstr (bp, ep-bp), 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
4309 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
4310 }
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4311 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4312
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4313
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4314 /*
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4315 * Makefile support
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4316 * Idea by Assar Westerlund <assar@sics.se> (2001)
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4317 */
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4318 static void
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4319 Makefile_targets (inf)
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4320 FILE *inf;
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4321 {
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4322 register char *bp;
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4323
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4324 LOOP_ON_INPUT_LINES (inf, lb, bp)
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4325 {
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4326 if (*bp == '\t' || *bp == '#')
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4327 continue;
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4328 while (*bp != '\0' && *bp != '=' && *bp != ':')
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4329 bp++;
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4330 if (*bp == ':')
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4331 pfnote (savenstr (lb.buffer, bp - lb.buffer), TRUE,
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4332 lb.buffer, bp - lb.buffer + 1, lineno, linecharno);
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4333 }
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4334 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4335
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4336
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4337 /*
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4338 * Pascal parsing
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4339 * Original code by Mosur K. Mohan (1989)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4340 *
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4341 * 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
4342 * 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
4343 * "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
4344 * the tag is skipped.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4345 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4346 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4347 Pascal_functions (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4348 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4349 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4350 linebuffer tline; /* mostly copied from C_entries */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4351 long save_lcno;
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4352 int save_lineno, save_len;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
4353 char c, *cp, *namebuf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4354
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4355 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
4356 incomment, /* point is inside a comment */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4357 inquote, /* point is inside '..' string */
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4358 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
4359 keyword, so next item = potential tag */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4360 found_tag, /* point is after a potential tag */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4361 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
4362 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
4363 next token will determine whether this
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4364 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
4365 whether it is a real tag */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4366
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4367 save_lcno = save_lineno = save_len = 0; /* keep compiler quiet */
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4368 namebuf = NULL; /* keep compiler quiet */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4369 lineno = 0;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4370 charno = 0;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4371 dbp = lb.buffer;
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4372 *dbp = '\0';
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4373 initbuffer (&tline);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4374
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4375 incomment = inquote = FALSE;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4376 found_tag = FALSE; /* have a proc name; check if extern */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4377 get_tagname = FALSE; /* have found "procedure" keyword */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4378 inparms = FALSE; /* found '(' after "proc" */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4379 verify_tag = FALSE; /* check if "extern" is ahead */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4380
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4381
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4382 while (!feof (inf)) /* long main loop to get next char */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4383 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4384 c = *dbp++;
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
4385 if (c == '\0') /* if end of line */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4386 {
15243
c024dca549c5 * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
Francesco Potortì <pot@gnu.org>
parents: 14982
diff changeset
4387 lineno++;
c024dca549c5 * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
Francesco Potortì <pot@gnu.org>
parents: 14982
diff changeset
4388 linecharno = charno;
c024dca549c5 * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
Francesco Potortì <pot@gnu.org>
parents: 14982
diff changeset
4389 charno += readline (&lb, inf);
c024dca549c5 * etags.c (CNL_SAVE_DEFINEDEF): Set linecharno for use by readline.
Francesco Potortì <pot@gnu.org>
parents: 14982
diff changeset
4390 dbp = lb.buffer;
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
4391 if (*dbp == '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4392 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
4393 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
4394 || get_tagname))
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4395 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
4396 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
4397 the procedure or function */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4398 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4399 if (incomment)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4400 {
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4401 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
4402 incomment = FALSE;
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4403 else if (c == '*' && *dbp == ')') /* within (* *) comments */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4404 {
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4405 dbp++;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4406 incomment = FALSE;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4407 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4408 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4409 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4410 else if (inquote)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4411 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4412 if (c == '\'')
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4413 inquote = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4414 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4415 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
4416 else
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4417 switch (c)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4418 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4419 case '\'':
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4420 inquote = TRUE; /* found first quote */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4421 continue;
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4422 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
4423 incomment = TRUE;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4424 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4425 case '(':
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4426 if (*dbp == '*') /* found open (* comment */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4427 {
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4428 incomment = TRUE;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4429 dbp++;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4430 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4431 else if (found_tag) /* found '(' after tag, i.e., parm-list */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4432 inparms = TRUE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4433 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4434 case ')': /* end of parms list */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4435 if (inparms)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4436 inparms = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4437 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4438 case ';':
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4439 if (found_tag && !inparms) /* end of proc or fn stmt */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4440 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4441 verify_tag = TRUE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4442 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4443 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4444 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4445 }
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4446 if (found_tag && verify_tag && (*dbp != ' '))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4447 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4448 /* 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
4449 if (*dbp == '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4450 continue;
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4451 if (lowcase (*dbp == 'e'))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4452 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4453 if (nocase_tail ("extern")) /* superfluous, really! */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4454 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4455 found_tag = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4456 verify_tag = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4457 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4458 }
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4459 else if (lowcase (*dbp) == 'f')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4460 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4461 if (nocase_tail ("forward")) /* check for forward reference */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4462 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4463 found_tag = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4464 verify_tag = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4465 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4466 }
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4467 if (found_tag && verify_tag) /* not external proc, so make tag */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4468 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4469 found_tag = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4470 verify_tag = FALSE;
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
4471 pfnote (namebuf, TRUE,
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4472 tline.buffer, save_len, save_lineno, save_lcno);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4473 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4474 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4475 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4476 if (get_tagname) /* grab name of proc or fn */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4477 {
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4478 if (*dbp == '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4479 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4480
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4481 /* 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
4482 linebuffer_setlen (&tline, lb.len);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4483 strcpy (tline.buffer, lb.buffer);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4484 save_lineno = lineno;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4485 save_lcno = linecharno;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4486
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4487 /* grab block name */
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4488 for (cp = dbp + 1; *cp != '\0' && !endtoken (*cp); cp++)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4489 continue;
20788
2bf465c6cc6b (getit, Cobol_paragraphs, Pascal_functions,
Richard M. Stallman <rms@gnu.org>
parents: 20071
diff changeset
4490 namebuf = savenstr (dbp, cp-dbp);
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
4491 dbp = cp; /* set dbp to e-o-token */
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4492 save_len = dbp - lb.buffer + 1;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4493 get_tagname = FALSE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4494 found_tag = TRUE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4495 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4496
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4497 /* and proceed to check for "extern" */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4498 }
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
4499 else if (!incomment && !inquote && !found_tag)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4500 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4501 /* check for proc/fn keywords */
12398
ccfd646cfad9 * etags.c (plain_C_entries): new function.
Francesco Potortì <pot@gnu.org>
parents: 12344
diff changeset
4502 switch (lowcase (c))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4503 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4504 case 'p':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4505 if (nocase_tail ("rocedure")) /* c = 'p', dbp has advanced */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4506 get_tagname = TRUE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4507 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4508 case 'f':
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4509 if (nocase_tail ("unction"))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4510 get_tagname = TRUE;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4511 continue;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4512 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4513 }
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4514 } /* while not eof */
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
4515
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
4516 free (tline.buffer);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4517 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4518
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4519
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4520 /*
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4521 * Lisp tag functions
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
4522 * look for (def or (DEF, quote or QUOTE
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4523 */
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
4524
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4525 static void L_getit __P((void));
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4526
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4527 static void
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4528 L_getit ()
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4529 {
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
4530 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
4531 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
4532 else if (*dbp == '(')
4663
5f0ff5c890a8 * etags.c (L_isdef, L_isquote, L_getit): small optimisations.
Francesco Potortì <pot@gnu.org>
parents: 4406
diff changeset
4533 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4534 dbp++;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4535 /* Try to skip "(quote " */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4536 if (!LOOKING_AT (dbp, "quote") && !LOOKING_AT (dbp, "QUOTE"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4537 /* Ok, then skip "(" before name in (defstruct (foo)) */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4538 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
4539 }
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4540 get_tag (dbp);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4541 }
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4542
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4543 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4544 Lisp_functions (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4545 FILE *inf;
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4546 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4547 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
4548 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4549 if (dbp[0] != '(')
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4550 continue;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4551
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4552 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
4553 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4554 dbp = skip_non_spaces (dbp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4555 dbp = skip_spaces (dbp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4556 L_getit ();
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4557 }
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4558 else
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4559 {
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4560 /* Check for (foo::defmumble name-defined ... */
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4561 do
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4562 dbp++;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4563 while (!notinname (*dbp) && *dbp != ':');
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4564 if (*dbp == ':')
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4565 {
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4566 do
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4567 dbp++;
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4568 while (*dbp == ':');
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4569
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4570 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
4571 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4572 dbp = skip_non_spaces (dbp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4573 dbp = skip_spaces (dbp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4574 L_getit ();
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4575 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4576 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4577 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4578 }
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4579 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4580
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4581
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4582 /*
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4583 * Postscript tag functions
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4584 * 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
4585 * Also look at "defineps" for PSWrap
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4586 * Ideas by:
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4587 * Richard Mlynarik <mly@adoc.xerox.com> (1997)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4588 * 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
4589 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4590 static void
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4591 Postscript_functions (inf)
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4592 FILE *inf;
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4593 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4594 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
4595
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4596 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
4597 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4598 if (bp[0] == '/')
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4599 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4600 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
4601 *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
4602 ep++)
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4603 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
4604 pfnote (savenstr (bp, ep-bp), 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
4605 lb.buffer, ep - lb.buffer + 1, lineno, linecharno);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4606 }
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4607 else if (LOOKING_AT (bp, "defineps"))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4608 get_tag (bp);
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4609 }
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4610 }
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4611
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4612
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4613 /*
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4614 * Scheme tag functions
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4615 * look for (def... xyzzy
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4616 * (def... (xyzzy
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4617 * (def ... ((...(xyzzy ....
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4618 * (set! xyzzy
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4619 * Original code by Ken Haase (1985?)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4620 */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4621
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4622 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4623 Scheme_functions (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4624 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4625 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4626 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
4627
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4628 LOOP_ON_INPUT_LINES (inf, lb, bp)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4629 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4630 if (strneq (bp, "(def", 4) || strneq (bp, "(DEF", 4))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4631 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4632 bp = skip_non_spaces (bp+4);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4633 /* Skip over open parens and white space */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4634 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
4635 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
4636 get_tag (bp);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4637 }
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4638 if (LOOKING_AT (bp, "(SET!") || LOOKING_AT (bp, "(set!"))
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4639 get_tag (bp);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4640 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4641 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4642
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4643
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4644 /* Find tags in TeX and LaTeX input files. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4645
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4646 /* TEX_toktab is a table of TeX control sequences that define tags.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4647 Each TEX_tabent records one such control sequence.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4648 CONVERT THIS TO USE THE Stab TYPE!! */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4649 struct TEX_tabent
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4650 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4651 char *name;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4652 int len;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4653 };
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4654
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
4655 static struct TEX_tabent *TEX_toktab = NULL; /* Table with tag tokens */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4656
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4657 /* Default set of control sequences to put into TEX_toktab.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4658 The value of environment var TEXTAGS is prepended to this. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4659
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
4660 static char *TEX_defenv = "\
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
4661 :chapter:section:subsection:subsubsection:eqno:label:ref:cite:bibitem\
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
4662 :part:appendix:entry:index";
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4663
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4664 static void TEX_mode __P((FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4665 static struct TEX_tabent *TEX_decode_env __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4666 static int TEX_Token __P((char *));
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4667
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
4668 static char TEX_esc = '\\';
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
4669 static char TEX_opgrp = '{';
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
4670 static char TEX_clgrp = '}';
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4671
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4672 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4673 * TeX/LaTeX scanning loop.
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4674 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4675 static void
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4676 TeX_commands (inf)
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4677 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4678 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4679 char *cp, *lasthit;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4680 register int i;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4681
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4682 /* 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
4683 TEX_mode (inf);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4684
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4685 /* Initialize token table once from environment. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4686 if (!TEX_toktab)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4687 TEX_toktab = TEX_decode_env ("TEXTAGS", TEX_defenv);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4688
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4689 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
4690 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4691 lasthit = 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
4692 /* Look at each esc in 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
4693 while ((cp = etags_strchr (cp, TEX_esc)) != NULL)
1026
cc96e2df9b71 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 774
diff changeset
4694 {
26262
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 if (*++cp == '\0')
1026
cc96e2df9b71 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 774
diff changeset
4696 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
4697 linecharno += cp - lasthit;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4698 lasthit = cp;
1026
cc96e2df9b71 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 774
diff changeset
4699 i = TEX_Token (lasthit);
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4700 if (i >= 0)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4701 {
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4702 register char *p;
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4703 for (lasthit += TEX_toktab[i].len;
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4704 *lasthit == TEX_esc || *lasthit == TEX_opgrp;
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4705 lasthit++)
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4706 continue;
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4707 for (p = lasthit;
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4708 !iswhite (*p) && *p != TEX_opgrp && *p != TEX_clgrp;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4709 p++)
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4710 continue;
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
4711 pfnote (savenstr (lasthit, p-lasthit), TRUE,
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
4712 lb.buffer, lb.len, lineno, linecharno);
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4713 break; /* We only tag a line once */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4714 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4715 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4716 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4717 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4718
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4719 #define TEX_LESC '\\'
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4720 #define TEX_SESC '!'
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4721 #define TEX_cmt '%'
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4722
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4723 /* 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
4724 chars accordingly. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4725 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4726 TEX_mode (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4727 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4728 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4729 int c;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4730
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4731 while ((c = getc (inf)) != EOF)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4732 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4733 /* Skip to next line if we hit the TeX comment char. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4734 if (c == TEX_cmt)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4735 while (c != '\n')
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4736 c = getc (inf);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4737 else if (c == TEX_LESC || c == TEX_SESC )
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4738 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4739 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4740
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4741 if (c == TEX_LESC)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4742 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4743 TEX_esc = TEX_LESC;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4744 TEX_opgrp = '{';
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4745 TEX_clgrp = '}';
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4746 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4747 else
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4748 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4749 TEX_esc = TEX_SESC;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4750 TEX_opgrp = '<';
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4751 TEX_clgrp = '>';
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4752 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4753 /* 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
4754 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
4755 rewind (inf);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4756 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4757
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4758 /* 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
4759 Build token table. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4760 static struct TEX_tabent *
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4761 TEX_decode_env (evarname, defenv)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4762 char *evarname;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4763 char *defenv;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4764 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4765 register char *env, *p;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4766
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4767 struct TEX_tabent *tab;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4768 int size, i;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4769
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4770 /* Append default string to environment. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4771 env = getenv (evarname);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4772 if (!env)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4773 env = defenv;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4774 else
17778
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 char *oldenv = env;
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4777 env = concat (oldenv, defenv, "");
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
4778 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4779
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4780 /* Allocate a token table */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4781 for (size = 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
4782 if ((p = etags_strchr (p, ':')) && *++p != '\0')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4783 size++;
1026
cc96e2df9b71 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 774
diff changeset
4784 /* Add 1 to leave room for null terminator. */
cc96e2df9b71 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 774
diff changeset
4785 tab = xnew (size + 1, struct TEX_tabent);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4786
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4787 /* Unpack environment string into token table. Be careful about */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4788 /* zero-length strings (leading ':', "::" and trailing ':') */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4789 for (i = 0; *env;)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4790 {
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
4791 p = etags_strchr (env, ':');
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4792 if (!p) /* End of environment string. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4793 p = env + strlen (env);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4794 if (p - env > 0)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4795 { /* Only non-zero strings. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4796 tab[i].name = savenstr (env, p - env);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4797 tab[i].len = strlen (tab[i].name);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4798 i++;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4799 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4800 if (*p)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4801 env = p + 1;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4802 else
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4803 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4804 tab[i].name = NULL; /* Mark end of table. */
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4805 tab[i].len = 0;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4806 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4807 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4808 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4809 return tab;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4810 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4811
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4812 /* If the text at CP matches one of the tag-defining TeX command names,
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
4813 return the pointer to the first occurrence of that command in TEX_toktab.
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
4814 Otherwise return -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
4815 Keep the capital `T' in `token' for dumb truncating compilers
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4816 (this distinguishes it from `TEX_toktab' */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4817 static int
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4818 TEX_Token (cp)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4819 char *cp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4820 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4821 int i;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4822
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4823 for (i = 0; TEX_toktab[i].len > 0; i++)
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
4824 if (strneq (TEX_toktab[i].name, cp, TEX_toktab[i].len))
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4825 return i;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4826 return -1;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4827 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4828
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4829
28663
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4830 /* Texinfo support. Dave Love, Mar. 2000. */
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4831 static void
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
4832 Texinfo_nodes (inf)
28663
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4833 FILE * inf;
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4834 {
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4835 char *cp, *start;
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4836 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
4837 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
4838 {
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4839 start = cp;
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4840 while (*cp != '\0' && *cp != ',')
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4841 cp++;
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4842 pfnote (savenstr (start, cp - start), TRUE,
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4843 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4844 }
28663
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4845 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4846
28663
75826102199c (Texinfo_functions): New function.
Dave Love <fx@gnu.org>
parents: 27948
diff changeset
4847
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4848 /*
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4849 * Prolog support
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4850 *
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4851 * Assumes that the predicate or rule starts at column 0.
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4852 * 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
4853 * Original code by Sunichirou Sugou (1989)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4854 * 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
4855 */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4856 static int prolog_pr __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4857 static void prolog_skip_comment __P((linebuffer *, FILE *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4858 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
4859
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4860 static void
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4861 Prolog_functions (inf)
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4862 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4863 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4864 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
4865 int len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4866 int allocated;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4867
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4868 allocated = 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4869 len = 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4870 last = NULL;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4871
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4872 LOOP_ON_INPUT_LINES (inf, lb, cp)
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4873 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4874 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
4875 continue;
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
4876 else if (iswhite (cp[0])) /* Not a predicate */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4877 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
4878 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
4879 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
4880 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
4881 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4882 /* Predicate or rule. Store the function name so that we
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
4883 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
4884 if (last == NULL)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4885 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
4886 else if (len + 1 > allocated)
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
4887 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
4888 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
4889 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
4890 last[len] = '\0';
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4891 }
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4892 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4893 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4894
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4895
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4896 static void
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4897 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
4898 linebuffer *plb;
6756
8086a2590e2f * etags.c (outf, outfiledir): renamed to tagf, tagfiledir.
Francesco Potortì <pot@gnu.org>
parents: 6592
diff changeset
4899 FILE *inf;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4900 {
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4901 char *cp;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4902
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4903 do
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4904 {
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4905 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
4906 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
4907 return;
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4908 lineno++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4909 linecharno += 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
4910 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
4911 while (!feof(inf));
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4912 }
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4913
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4914 /*
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4915 * 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
4916 * <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
4917 * 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
4918 *
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4919 * 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
4920 * 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
4921 *
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4922 * 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
4923 * 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
4924 */
27658
5980f19581dc (pfnote, new_pfnote, C_entries, prolog_pred, erlang_func): Add
Dave Love <fx@gnu.org>
parents: 27595
diff changeset
4925 static int
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4926 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
4927 char *s;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4928 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
4929 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4930 int pos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4931 int len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4932
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
4933 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
4934 if (pos < 1)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4935 return 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4936
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4937 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
4938 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
4939
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4940 if ((s[pos] == '.'
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4941 || (s[pos] == '(' && (pos += 1))
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4942 || (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
4943 && (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
4944 || len != strlen (last)
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4945 || !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
4946 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4947 pfnote (savenstr (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
4948 return len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4949 }
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4950 else
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
4951 return 0;
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4952 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4953
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4954 /*
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4955 * 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
4956 * 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
4957 *
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4958 * 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
4959 * - 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
4960 * - 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
4961 * Backslash quotes everything.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4962 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
4963 static int
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4964 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
4965 char *s;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4966 int pos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4967 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4968 int origpos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4969
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4970 origpos = pos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4971
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
4972 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
4973 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4974 /* 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
4975 pos++;
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
4976 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
4977 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4978 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4979 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4980 return pos - origpos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4981 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4982 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
4983 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4984 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4985
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
4986 while (1)
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4987 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4988 if (s[pos] == '\'')
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4989 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4990 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4991 if (s[pos] != '\'')
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4992 break;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4993 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
4994 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4995 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
4996 /* 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
4997 return -1;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
4998 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
4999 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5000 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
5001 return -1;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5002 pos += 2;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5003 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5004 else
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5005 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5006 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5007 return pos - origpos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5008 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5009 else
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5010 return -1;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5011 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5012
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5013
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5014 /*
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5015 * 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
5016 *
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5017 * 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
5018 * Assumes that Erlang functions start at column 0.
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5019 * 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
5020 */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5021 static int erlang_func __P((char *, char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5022 static void erlang_attribute __P((char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5023 static int erlang_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
5024
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5025 static void
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5026 Erlang_functions (inf)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5027 FILE *inf;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5028 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5029 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
5030 int len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5031 int allocated;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5032
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5033 allocated = 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5034 len = 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5035 last = NULL;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5036
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5037 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
5038 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5039 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
5040 continue;
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
5041 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
5042 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
5043 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
5044 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
5045 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
5046 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
5047 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
5048 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5049 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
5050 last = NULL;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5051 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5052 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
5053 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5054 /*
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5055 * 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
5056 * 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
5057 */
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5058 if (last == NULL)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5059 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
5060 else if (len + 1 > allocated)
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5061 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
5062 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
5063 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
5064 last[len] = '\0';
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5065 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5066 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5067 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5068
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5069
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5070 /*
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5071 * 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
5072 * <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
5073 *
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5074 * 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
5075 * 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
5076 *
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5077 * 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
5078 * was found.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5079 */
27658
5980f19581dc (pfnote, new_pfnote, C_entries, prolog_pred, erlang_func): Add
Dave Love <fx@gnu.org>
parents: 27595
diff changeset
5080 static int
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5081 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
5082 char *s;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5083 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
5084 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5085 int pos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5086 int len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5087
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5088 pos = erlang_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
5089 if (pos < 1)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5090 return 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5091
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5092 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
5093 pos = skip_spaces (s + pos) - s;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5094
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5095 /* Save only the first clause. */
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5096 if (s[pos++] == '('
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5097 && (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
5098 || len != (int)strlen (last)
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5099 || !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
5100 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5101 pfnote (savenstr (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
5102 return len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5103 }
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5104
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5105 return 0;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5106 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5107
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5108
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5109 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5110 * 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
5111 * and records.
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5112 *
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5113 * 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
5114 * -define(foo, bar).
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5115 * -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
5116 * -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
5117 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5118 static void
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5119 erlang_attribute (s)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5120 char *s;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5121 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5122 int pos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5123 int len;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5124
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5125 if (LOOKING_AT (s, "-define") || LOOKING_AT (s, "-record"))
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5126 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5127 if (s[pos++] == '(')
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5128 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5129 pos = skip_spaces (s + pos) - s;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5130 len = erlang_atom (s, pos);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5131 if (len != 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
5132 pfnote (savenstr (& s[pos], len), 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
5133 s, pos + len, lineno, linecharno);
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5134 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5135 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5136 return;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5137 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5138
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5139
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5140 /*
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5141 * 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
5142 * 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
5143 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5144 static int
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5145 erlang_atom (s, pos)
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5146 char *s;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5147 int pos;
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 int origpos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5150
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5151 origpos = pos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5152
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
5153 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
5154 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5155 /* 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
5156 pos++;
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
5157 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
5158 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5159 return pos - origpos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5160 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5161 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
5162 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5163 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5164
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5165 while (1)
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5166 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5167 if (s[pos] == '\'')
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5168 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5169 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5170 break;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5171 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5172 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
5173 /* 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
5174 return -1;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5175 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
5176 {
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5177 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
5178 return -1;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5179 pos += 2;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5180 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5181 else
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5182 pos++;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5183 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5184 return pos - origpos;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5185 }
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5186 else
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5187 return -1;
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5188 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5189
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5190
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5191 #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
5192
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5193 static char *scan_separators __P((char *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5194 static void analyse_regex __P((char *, bool));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5195 static void add_regex __P((char *, bool, language *));
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5196 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
5197
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5198 /* Take a string like "/blah/" and turn it into "blah", making sure
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5199 that the first and last characters are the same, and handling
14021
19bab04cf346 (substitute): Fix spelling in message.
Karl Heuer <kwzh@gnu.org>
parents: 13696
diff changeset
5200 quoted separator characters. Actually, stops on the occurrence of
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5201 an unquoted separator. Also turns "\t" into a Tab character.
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5202 Returns pointer to terminating separator. Works in place. Null
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5203 terminates name string. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5204 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
5205 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
5206 char *name;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5207 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5208 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
5209 char *copyto = name;
18042
c378dd0b8de7 Various cleanups on TeX, Erlang, Prolog, C.
Francesco Potortì <pot@gnu.org>
parents: 17785
diff changeset
5210 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
5211
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5212 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
5213 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5214 if (quoted)
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5215 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5216 if (*name == 't')
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5217 *copyto++ = '\t';
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5218 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
5219 *copyto++ = sep;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5220 else
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5221 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5222 /* Something else is quoted, so preserve the quote. */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5223 *copyto++ = '\\';
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5224 *copyto++ = *name;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5225 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5226 quoted = FALSE;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5227 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5228 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
5229 quoted = TRUE;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5230 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
5231 break;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5232 else
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5233 *copyto++ = *name;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5234 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5235
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5236 /* 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
5237 *copyto = '\0';
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5238 return name;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5239 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5240
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5241 /* 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
5242 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
5243 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
5244 analyse_regex (regex_arg, ignore_case)
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5245 char *regex_arg;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5246 bool ignore_case;
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5247 {
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5248 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
5249 {
a7f40b000353 * etags.c (analyse_regex): If regex_arg is NULL, return
Francesco Potortì <pot@gnu.org>
parents: 37719
diff changeset
5250 free_patterns (); /* --no-regex: remove existing regexps */
a7f40b000353 * etags.c (analyse_regex): If regex_arg is NULL, return
Francesco Potortì <pot@gnu.org>
parents: 37719
diff changeset
5251 return;
a7f40b000353 * etags.c (analyse_regex): If regex_arg is NULL, return
Francesco Potortì <pot@gnu.org>
parents: 37719
diff changeset
5252 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5253
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5254 /* 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
5255 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
5256 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5257 /* 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
5258 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
5259 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
5260 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
5261 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
5262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5263 /* 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
5264 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
5265 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
5266 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5267 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
5268 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
5269 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
5270
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5271 /* 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
5272 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
5273 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
5274 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5275 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
5276 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
5277 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5278 initbuffer (&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
5279 while (readline_internal (&regexbuf, regexfp) > 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
5280 analyse_regex (regexbuf.buffer, ignore_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
5281 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
5282 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
5283 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5284 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
5285
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5286 /* 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
5287 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
5288 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5289 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
5290 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
5291 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
5292
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5293 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
5294 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
5295 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5296 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
5297 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
5298 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5299 *cp = '\0';
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
5300 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
5301 if (lang == NULL)
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5302 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
5303 add_regex (cp + 1, ignore_case, 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
5304 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5305 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
5306
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5307 /* 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
5308 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
5309 add_regex (regex_arg, ignore_case, 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
5310 break;
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5311 }
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5312 }
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5313
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5314 /* Turn a name, which is an ed-style (but Emacs syntax) regular
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5315 expression, into a real regular expression by compiling it. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5316 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
5317 add_regex (regexp_pattern, ignore_case, lang)
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5318 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
5319 bool ignore_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
5320 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
5321 {
37719
9c4fdf982ba2 (add_regex): Reset the whole newly allocated pattern buffer instead of
Francesco Potortì <pot@gnu.org>
parents: 37502
diff changeset
5322 static struct re_pattern_buffer zeropattern;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5323 char *name;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5324 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
5325 struct re_pattern_buffer *patbuf;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5326 pattern *pp;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5327
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5328
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5329 if (regexp_pattern[strlen(regexp_pattern)-1] != regexp_pattern[0])
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5330 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5331 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
5332 return;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5333 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5334 name = scan_separators (regexp_pattern);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5335 if (regexp_pattern[0] == '\0')
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5336 {
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
5337 error ("null regexp", (char *)NULL);
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5338 return;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5339 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5340 (void) 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
5341
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5342 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
5343 *patbuf = zeropattern;
9c4fdf982ba2 (add_regex): Reset the whole newly allocated pattern buffer instead of
Francesco Potortì <pot@gnu.org>
parents: 37502
diff changeset
5344 if (ignore_case)
9c4fdf982ba2 (add_regex): Reset the whole newly allocated pattern buffer instead of
Francesco Potortì <pot@gnu.org>
parents: 37502
diff changeset
5345 patbuf->translate = lc_trans; /* translation table to fold case */
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5346
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5347 err = re_compile_pattern (regexp_pattern, strlen (regexp_pattern), patbuf);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5348 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
5349 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5350 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
5351 return;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5352 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5353
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5354 pp = p_head;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5355 p_head = xnew (1, pattern);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5356 p_head->regex = savestr (regexp_pattern);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5357 p_head->p_next = pp;
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5358 p_head->lang = lang;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5359 p_head->pat = patbuf;
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5360 p_head->name_pattern = savestr (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
5361 p_head->error_signaled = 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
5362 p_head->ignore_case = ignore_case;
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5363 }
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5364
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5365 /*
13380
12bfc1ecec61 * etags.c (lowcase): Use the standard tolower function.
Francesco Potortì <pot@gnu.org>
parents: 12879
diff changeset
5366 * 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
5367 * arguments.
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5368 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5369 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
5370 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
5371 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
5372 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
5373 {
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
5374 char *result, *t;
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5375 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
5376
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
5377 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
5378 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
5379
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5380 /* 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
5381 if (out[size - 1] == '\\')
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5382 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
5383 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
5384 t != NULL;
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5385 t = etags_strchr (t + 2, '\\'))
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
5386 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
5387 {
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5388 dig = t[1] - '0';
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5389 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
5390 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
5391 }
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5392 else
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5393 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
5394
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5395 /* Allocate space and do the substitutions. */
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5396 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
5397
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5398 for (t = result; *out != '\0'; out++)
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
5399 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
5400 {
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5401 dig = *out - '0';
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5402 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
5403 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
5404 t += diglen;
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5405 }
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5406 else
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5407 *t++ = *out;
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5408 *t = '\0';
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5409
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5410 assert (t <= result + size && 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
5411
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5412 return result;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5413 }
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5414
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5415 /* Deallocate all patterns. */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5416 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
5417 free_patterns ()
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5418 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5419 pattern *pp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5420 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
5421 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5422 pp = p_head->p_next;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5423 free (p_head->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
5424 free (p_head->name_pattern);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5425 free (p_head);
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5426 p_head = pp;
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5427 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5428 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
5429 }
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
5430 #endif /* ETAGS_REGEXPS */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5431
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5432
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5433 static bool
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5434 nocase_tail (cp)
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5435 char *cp;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5436 {
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5437 register int len = 0;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5438
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5439 while (*cp != '\0' && lowcase (*cp) == lowcase (dbp[len]))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5440 cp++, len++;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5441 if (*cp == '\0' && !intoken (dbp[len]))
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5442 {
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5443 dbp += len;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5444 return TRUE;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5445 }
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5446 return FALSE;
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5447 }
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5448
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5449 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
5450 get_tag (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
5451 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
5452 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5453 register char *cp, *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
5454
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5455 if (*bp == '\0')
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5456 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
5457 /* Go till you get to white space or a syntactic break */
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5458 for (cp = bp + 1; !notinname (*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
5459 continue;
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5460 name = savenstr (bp, cp-bp);
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5461 pfnote (name, TRUE,
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5462 lb.buffer, cp - lb.buffer + 1, lineno, linecharno);
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
5463 return 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
5464 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5465
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5466 /* Initialize a linebuffer for use */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5467 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
5468 initbuffer (lbp)
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5469 linebuffer *lbp;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5470 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5471 lbp->size = (DEBUG) ? 3 : 200;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5472 lbp->buffer = xnew (lbp->size, char);
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5473 lbp->buffer[0] = '\0';
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5474 lbp->len = 0;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5475 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5476
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5477 /*
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5478 * 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
5479 * 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
5480 * `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
5481 *
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5482 * On DOS or Windows we do not count the CR character, if any, before 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
5483 * NL, in the returned length; this mirrors the behavior of emacs on those
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5484 * 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
5485 * file).
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5486 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5487 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
5488 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
5489 linebuffer *lbp;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5490 register FILE *stream;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5491 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5492 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
5493 register char *p = lbp->buffer;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5494 register char *pend;
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5495 int chars_deleted;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5496
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5497 pend = p + lbp->size; /* Separate to avoid 386/IX compiler bug. */
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5498
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5499 while (1)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5500 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5501 register int c = getc (stream);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5502 if (p == pend)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5503 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5504 /* 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
5505 lbp->size *= 2;
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5506 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
5507 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
5508 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
5509 lbp->buffer = buffer;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5510 }
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5511 if (c == EOF)
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5512 {
14859
efa1bc6b7b17 * etags.c (just_read_file): Reset lineno and charno on entry.
Francesco Potortì <pot@gnu.org>
parents: 14230
diff changeset
5513 *p = '\0';
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5514 chars_deleted = 0;
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5515 break;
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5516 }
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5517 if (c == '\n')
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5518 {
10990
c0ceaa45ded7 * etags.c (process_file): free (filename) after using it.
Francesco Potortì <pot@gnu.org>
parents: 10801
diff changeset
5519 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
5520 {
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5521 p -= 1;
15772
eb1cef7102e3 (readline_internal) [DOS_NT]: Don't include CRs when
Richard M. Stallman <rms@gnu.org>
parents: 15683
diff changeset
5522 #ifdef DOS_NT
16373
d50369f4bb41 * etags.c (print_version): Print copyright info.
Francesco Potortì <pot@gnu.org>
parents: 16086
diff changeset
5523 /* 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
5524 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
5525 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
5526 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
5527 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
5528 chars_deleted = 1;
eb1cef7102e3 (readline_internal) [DOS_NT]: Don't include CRs when
Richard M. Stallman <rms@gnu.org>
parents: 15683
diff changeset
5529 #else
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5530 chars_deleted = 2;
15772
eb1cef7102e3 (readline_internal) [DOS_NT]: Don't include CRs when
Richard M. Stallman <rms@gnu.org>
parents: 15683
diff changeset
5531 #endif
10376
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5532 }
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5533 else
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5534 {
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5535 chars_deleted = 1;
b1c4515958b6 * etags.c (Lang_function): Use void instead to declare the
Francesco Potortì <pot@gnu.org>
parents: 10355
diff changeset
5536 }
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5537 *p = '\0';
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5538 break;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5539 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5540 *p++ = c;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5541 }
26262
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 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
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 return lbp->len + chars_deleted;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5545 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5546
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5547 /*
17602
39b58a508be6 * etags.c [TeX_named_tokens]: Set to FALSE if undefined.
Francesco Potortì <pot@gnu.org>
parents: 17477
diff changeset
5548 * Like readline_internal, above, but in addition try to match the
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5549 * input line against relevant regular expressions.
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5550 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5551 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
5552 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
5553 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
5554 FILE *stream;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5555 {
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5556 /* Read new line. */
26262
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 long result = readline_internal (lbp, stream);
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5558
43854
e71940336640 * etags.c (Python_functions): Skip spaces at beginning of lines.
Francesco Potortì <pot@gnu.org>
parents: 43759
diff changeset
5559 /* 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
5560 if (!no_line_directive)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5561 {
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
5562 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
5563
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5564 /* 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
5565 if (result > 12 && strneq (lbp->buffer, "#line ", 6))
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5566 {
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
5567 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
5568
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5569 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
5570 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
5571 {
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
5572 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
5573
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5574 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
5575 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
5576 && 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
5577 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
5578 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
5579 /* 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
5580 {
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
5581 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
5582 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
5583 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
5584
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5585 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
5586 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
5587 *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
5588 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
5589 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
5590 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
5591 || 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
5592 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
5593 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
5594 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
5595
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5596 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
5597 /* 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
5598 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
5599 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
5600 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
5601 /* 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
5602 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
5603 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
5604 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5605 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
5606
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5607 /* 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
5608 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
5609 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
5610 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
5611 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
5612 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
5613 && 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
5614 /* 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
5615 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
5616 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
5617 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
5618 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
5619 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
5620 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
5621 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
5622 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5623 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
5624 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
5625 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
5626 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5627 /* 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
5628 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
5629 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
5630 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
5631 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
5632 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5633 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
5634 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
5635 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
5636 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5637 /* 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
5638 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
5639 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
5640 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5641 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
5642 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
5643 *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
5644 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
5645 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
5646 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
5647 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
5648 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
5649 fdhead->usecharno = 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
5650 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
5651 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5652 }
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5653 free (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
5654 lineno = 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
5655 return readline (lbp, stream);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5656 } /* 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
5657 } /* 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
5658 } /* 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
5659
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5660 /* 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
5661 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
5662 {
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5663 if (result > 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
5664 /* Do a tail recursion on ourselves, thus discarding the contents
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5665 of the line buffer. */
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5666 return readline (lbp, stream);
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
5667 /* 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
5668 discard_until_line_directive = 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
5669 return 0;
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5670 }
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
5671 } /* 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
5672
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
5673 #ifdef ETAGS_REGEXPS
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5674 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5675 int match;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5676 pattern *pp;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5677
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5678 /* Match against relevant patterns. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5679 if (lbp->len > 0)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5680 for (pp = p_head; pp != NULL; pp = pp->p_next)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5681 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5682 /* Only use generic regexps or those for the current 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
5683 if (pp->lang != NULL && pp->lang != fdhead->lang)
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5684 continue;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5685
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5686 match = re_match (pp->pat, lbp->buffer, lbp->len, 0, &pp->regs);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5687 switch (match)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5688 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5689 case -2:
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5690 /* Some error. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5691 if (!pp->error_signaled)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5692 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5693 error ("error while matching \"%s\"", pp->regex);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5694 pp->error_signaled = TRUE;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5695 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5696 break;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5697 case -1:
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5698 /* No match. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5699 break;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5700 default:
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5701 /* Match occurred. Construct a tag. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5702 if (pp->name_pattern[0] != '\0')
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5703 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5704 /* Make a named tag. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5705 char *name = substitute (lbp->buffer,
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5706 pp->name_pattern, &pp->regs);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5707 if (name != NULL)
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5708 pfnote (name, TRUE, lbp->buffer, match, lineno, linecharno);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5709 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5710 else
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5711 {
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5712 /* Make an unnamed tag. */
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5713 pfnote ((char *)NULL, TRUE,
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5714 lbp->buffer, match, lineno, linecharno);
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5715 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5716 break;
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5717 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5718 }
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
5719 }
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5720 #endif /* 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
5721
9976
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5722 return result;
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5723 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5724
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5725
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
5726 /*
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
5727 * 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
5728 * 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
5729 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5730 static char *
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5731 savestr (cp)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5732 char *cp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5733 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5734 return savenstr (cp, strlen (cp));
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5735 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5736
10404
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
5737 /*
631f1dac6f7a Global polishing, some bugs corrected, dynamic allocation used instead
Francesco Potortì <pot@gnu.org>
parents: 10378
diff changeset
5738 * 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
5739 * 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
5740 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5741 static char *
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5742 savenstr (cp, len)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5743 char *cp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5744 int len;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5745 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5746 register char *dp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5747
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5748 dp = xnew (len + 1, char);
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
5749 strncpy (dp, cp, len);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5750 dp[len] = '\0';
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5751 return dp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5752 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5753
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5754 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5755 * Return the ptr in sp at which the character c last
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5756 * appears; NULL if not found
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5757 *
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5758 * Identical to POSIX strrchr, included for portability.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5759 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5760 static char *
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
5761 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
5762 register const char *sp;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5763 register int c;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5764 {
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5765 register const char *r;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5766
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5767 r = NULL;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5768 do
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5769 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5770 if (*sp == c)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5771 r = sp;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5772 } while (*sp++);
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5773 return (char *)r;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5774 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5775
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5776 /*
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5777 * Return the ptr in sp at which the character c first
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5778 * appears; NULL if not found
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5779 *
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5780 * Identical to POSIX strchr, included for portability.
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5781 */
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5782 static char *
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
5783 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
5784 register const char *sp;
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5785 register int c;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5786 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5787 do
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5788 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5789 if (*sp == c)
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5790 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
5791 } while (*sp++);
2869e501c2de * etags.c [ETAGS_REGEXP]: All the new code that deals with regexps
Francesco Potortì <pot@gnu.org>
parents: 9975
diff changeset
5792 return NULL;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5793 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5794
44605
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5795 /*
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5796 * Return TRUE if the two strings are equal, ignoring case for alphabetic
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5797 * characters.
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5798 *
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5799 * Analogous to BSD's strcasecmp, included for portability.
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5800 */
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5801 static bool
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5802 strcaseeq (s1, s2)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5803 register const char *s1;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5804 register const char *s2;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5805 {
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5806 while (*s1 != '\0'
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5807 && (ISALPHA (*s1) && ISALPHA (*s2)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5808 ? lowcase (*s1) == lowcase (*s2)
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5809 : *s1 == *s2))
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5810 s1++, s2++;
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5811
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5812 return (*s1 == *s2);
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5813 }
1bec0b430206 Bug fix. New version to come soon.
Francesco Potortì <pot@gnu.org>
parents: 44604
diff changeset
5814
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5815 /* 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
5816 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
5817 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
5818 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
5819 {
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
5820 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
5821 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
5822 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
5823 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5824
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5825 /* 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
5826 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
5827 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
5828 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
5829 {
27661
c8b3e7e83e09 2000-02-10 Francesco Potorti` <pot@gnu.org>
Francesco Potortì <pot@gnu.org>
parents: 27658
diff changeset
5830 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
5831 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
5832 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
5833 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5834
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5835 /* Print error message and exit. */
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5836 void
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5837 fatal (s1, s2)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5838 char *s1, *s2;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5839 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5840 error (s1, s2);
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
5841 exit (BAD);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5842 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5843
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5844 static void
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5845 pfatal (s1)
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5846 char *s1;
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5847 {
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5848 perror (s1);
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5849 exit (BAD);
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5850 }
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5851
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5852 static void
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
5853 suggest_asking_for_help ()
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
5854 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5855 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
5856 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
5857 #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
5858 "--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
5859 #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
5860 "-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
5861 #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
5862 );
13696
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
5863 exit (BAD);
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
5864 }
f89aa5a5c485 * etags.c (Cplusplus_suffixes): Add .M suffix for Objective C++.
Francesco Potortì <pot@gnu.org>
parents: 13404
diff changeset
5865
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5866 /* 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
5867 static void
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5868 error (s1, s2)
27595
25ed45af9355 2000-01-31 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26507
diff changeset
5869 const char *s1, *s2;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5870 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5871 fprintf (stderr, "%s: ", progname);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5872 fprintf (stderr, s1, s2);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5873 fprintf (stderr, "\n");
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5874 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5875
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5876 /* Return a newly-allocated string whose contents
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5877 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
5878 static char *
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5879 concat (s1, s2, s3)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5880 char *s1, *s2, *s3;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5881 {
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5882 int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5883 char *result = xnew (len1 + len2 + len3 + 1, char);
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5884
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
5885 strcpy (result, s1);
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
5886 strcpy (result + len1, s2);
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
5887 strcpy (result + len1 + len2, s3);
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5888 result[len1 + len2 + len3] = '\0';
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5889
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5890 return result;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5891 }
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5892
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
5893
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5894 /* 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
5895 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
5896 static char *
7227
6fa038c33a0f [MSDOS]: #include <sys/param.h> for the following.
Richard M. Stallman <rms@gnu.org>
parents: 7049
diff changeset
5897 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
5898 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5899 #ifdef HAVE_GETCWD
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5900 int bufsize = 200;
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5901 char *path = xnew (bufsize, char);
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5902
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5903 while (getcwd (path, bufsize) == NULL)
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
5904 {
9975
e21b0674f37c * etags.c (<errno.h>): #include added.
Francesco Potortì <pot@gnu.org>
parents: 9773
diff changeset
5905 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
5906 pfatal ("getcwd");
9975
e21b0674f37c * etags.c (<errno.h>): #include added.
Francesco Potortì <pot@gnu.org>
parents: 9773
diff changeset
5907 bufsize *= 2;
17778
c3ff4c535c9c * etags.c: (Cplusplus_suffixes): .pdb is Postscript with C syntax.
Francesco Potortì <pot@gnu.org>
parents: 17602
diff changeset
5908 free (path);
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5909 path = xnew (bufsize, char);
8789
81a2817b99b2 (etags_getcwd): Use getcwd if available.
Karl Heuer <kwzh@gnu.org>
parents: 8180
diff changeset
5910 }
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5911
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5912 canonicalize_filename (path);
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5913 return path;
16394
675944d1abc9 (etags_getcwd) [WINDOWSNT]: Convert backslashes to slashes.
Richard M. Stallman <rms@gnu.org>
parents: 16373
diff changeset
5914
16086
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
5915 #else /* not HAVE_GETCWD */
35665
2ce207b252dc Many changes to the parsing capabilities of etags.
Francesco Potortì <pot@gnu.org>
parents: 35653
diff changeset
5916 #if MSDOS
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
5917
16086
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
5918 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
5919
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
5920 getwd (path);
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
5921
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
5922 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
5923 if (*p == '\\')
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
5924 *p = '/';
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
5925 else
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
5926 *p = lowcase (*p);
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
5927
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
5928 return strdup (path);
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
5929 #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
5930 linebuffer path;
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5931 FILE *pipe;
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5932
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5933 initbuffer (&path);
11990
1e5d25c997ca * etags.c (etags_getcwd): Undo the /bin/pwd change. It may raise
Francesco Potortì <pot@gnu.org>
parents: 11957
diff changeset
5934 pipe = (FILE *) popen ("pwd 2>/dev/null", "r");
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5935 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
5936 pfatal ("pwd");
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5937 pclose (pipe);
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5938
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5939 return path.buffer;
16086
33519c691e63 (etags_getcwd): Use getcwd if available even if MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 15772
diff changeset
5940 #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
5941 #endif /* not HAVE_GETCWD */
10378
fb23ac6e6199 * etags.c (pfatal): New function.
Francesco Potortì <pot@gnu.org>
parents: 10376
diff changeset
5942 }
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
5943
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5944 /* 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
5945 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
5946 static char *
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5947 relative_filename (file, dir)
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5948 char *file, *dir;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5949 {
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5950 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
5951 int i;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5952
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
5953 /* 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
5954 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
5955 fp = afn;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5956 dp = dir;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5957 while (*fp++ == *dp++)
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5958 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
5959 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
5960 #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
5961 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
5962 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
5963 #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
5964 do /* look at the equal chars until '/' */
16540
bf7e776e40f6 * etags.c (relative_filename): Bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 16394
diff changeset
5965 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
5966 while (*fp != '/');
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5967
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
5968 /* 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
5969 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
5970 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
5971 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
5972 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
5973 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
5974 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
5975 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
5976
1b5cc3740793 Tue Apr 15 16:09:15 1997 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 17168
diff changeset
5977 /* 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
5978 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
5979 free (afn);
12879
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
5980
3b90cbba7dad * etags.c (Pascal_functions): Close comment bug corrected.
Francesco Potortì <pot@gnu.org>
parents: 12398
diff changeset
5981 return res;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5982 }
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5983
26262
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 /* 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
5985 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
5986 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
5987 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
5988 char *file, *dir;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5989 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5990 char *slashp, *cp, *res;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
5991
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
5992 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
5993 res = savestr (file);
14920
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
5994 #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
5995 /* 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
5996 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
5997 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
5998 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
5999 #endif
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6000 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
6001 res = concat (dir, file, "");
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6002
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6003 /* Delete the "/dirname/.." and "/." substrings. */
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
6004 slashp = etags_strchr (res, '/');
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6005 while (slashp != NULL && slashp[0] != '\0')
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6006 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6007 if (slashp[1] == '.')
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6008 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6009 if (slashp[2] == '.'
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6010 && (slashp[3] == '/' || slashp[3] == '\0'))
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6011 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6012 cp = slashp;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6013 do
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6014 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
6015 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
6016 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
6017 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
6018 #ifdef DOS_NT
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
6019 /* 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
6020 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
6021 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
6022 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
6023 cp = slashp;
14920
b909bb3e64c9 (absolutefn) [DOS_NT]: Support Novell drives whose drive
Richard M. Stallman <rms@gnu.org>
parents: 14859
diff changeset
6024 #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
6025 strcpy (cp, slashp + 3);
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6026 slashp = cp;
7776
f91e2cf8770b * etags.c (absolute_filename): Remove infinite loop bug when
Francesco Potortì <pot@gnu.org>
parents: 7775
diff changeset
6027 continue;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6028 }
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6029 else if (slashp[2] == '/' || slashp[2] == '\0')
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6030 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6031 strcpy (slashp, slashp + 2);
7776
f91e2cf8770b * etags.c (absolute_filename): Remove infinite loop bug when
Francesco Potortì <pot@gnu.org>
parents: 7775
diff changeset
6032 continue;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6033 }
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6034 }
7776
f91e2cf8770b * etags.c (absolute_filename): Remove infinite loop bug when
Francesco Potortì <pot@gnu.org>
parents: 7775
diff changeset
6035
f91e2cf8770b * etags.c (absolute_filename): Remove infinite loop bug when
Francesco Potortì <pot@gnu.org>
parents: 7775
diff changeset
6036 slashp = etags_strchr (slashp + 1, '/');
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6037 }
24140
9e4d1d3eab09 (etags_getcwd, absolute_filename) [DOS_NT]: Canonicalize
Geoff Voelker <voelker@cs.washington.edu>
parents: 24059
diff changeset
6038
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
6039 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
6040 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
6041 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
6042 return res;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6043 }
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6044
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
6045 /* 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
6046 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
6047 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
6048 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
6049 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
6050 char *file, *dir;
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6051 {
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6052 char *slashp, *res;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6053 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
6054
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6055 canonicalize_filename (file);
6592
9a76406c9f98 * etags.c (main): use etags_getcwd for compatibility.
Francesco Potortì <pot@gnu.org>
parents: 6530
diff changeset
6056 slashp = etags_strrchr (file, '/');
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6057 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
6058 return savestr (dir);
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6059 save = slashp[1];
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6060 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
6061 res = absolute_filename (file, dir);
6482
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6062 slashp[1] = save;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6063
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6064 return res;
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6065 }
91112dd5c9f5 * etags.c (cwd, outfiledir): vars added.
Francesco Potortì <pot@gnu.org>
parents: 5976
diff changeset
6066
26262
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6067 /* 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
6068 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
6069 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
6070 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
6071 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
6072 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6073 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
6074 #ifdef DOS_NT
34608
9286b7ab7104 (ISALNUM, ISALPHA, ISDIGIT, ISLOWER): New macros.
Gerd Moellmann <gerd@gnu.org>
parents: 30969
diff changeset
6075 || (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
6076 #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
6077 );
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6078 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6079
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6080 /* 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
6081 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
6082 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
6083 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
6084 {
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6085 #ifdef DOS_NT
26507
aabdfbf65c68 1999-11-19 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 26340
diff changeset
6086 /* Canonicalize drive letter case. */
35297
e268b7b500f0 Changes for makefile support in etags.
Francesco Potortì <pot@gnu.org>
parents: 34635
diff changeset
6087 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
6088 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
6089 /* 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
6090 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
6091 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
6092 *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
6093 #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
6094 /* 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
6095 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
6096 #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
6097 }
c416a18b0a5d Checked in at last a lot of improvementes and bug fixes. The oldest dating
Francesco Potortì <pot@gnu.org>
parents: 26083
diff changeset
6098
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6099 /* 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
6100 static void
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6101 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
6102 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
6103 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
6104 {
35574
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6105 while (lbp->size <= toksize)
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6106 {
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6107 lbp->size *= 2;
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6108 xrnew (lbp->buffer, lbp->size, char);
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6109 }
ede82ab0ae24 Many small improvements in tagging accuracy and capability,
Francesco Potortì <pot@gnu.org>
parents: 35302
diff changeset
6110 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
6111 }
4ed8667d6bd9 Wed Nov 13 17:51:29 1996 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
Francesco Potortì <pot@gnu.org>
parents: 16540
diff changeset
6112
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6113 /* 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
6114 static PTR
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6115 xmalloc (size)
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
6116 unsigned int size;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6117 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
6118 PTR result = (PTR) malloc (size);
5940
e663f6626075 * etags.c (absolute_pathnames, cwd): added global vars.
Francesco Potortì <pot@gnu.org>
parents: 5580
diff changeset
6119 if (result == NULL)
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
6120 fatal ("virtual memory exhausted", (char *)NULL);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6121 return result;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6122 }
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6123
43723
5cd450d9f443 * etags.c: Honour #line directives.
Francesco Potortì <pot@gnu.org>
parents: 42345
diff changeset
6124 static PTR
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6125 xrealloc (ptr, size)
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6126 char *ptr;
5580
517d8eb361f8 * etags.c (stab_entry, stab_create, stab_find, stab_search,
Francesco Potortì <pot@gnu.org>
parents: 5448
diff changeset
6127 unsigned int size;
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6128 {
42345
7d2776273a81 support for Perl packages
Francesco Potortì <pot@gnu.org>
parents: 42042
diff changeset
6129 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
6130 if (result == NULL)
16607
16b8d910795f * etags.c (C_entries): Test tok.valid. This handles some
Francesco Potortì <pot@gnu.org>
parents: 16573
diff changeset
6131 fatal ("virtual memory exhausted", (char *)NULL);
240
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6132 return result;
939deddfb6b2 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6133 }
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6134
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6135 /*
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6136 * Local Variables:
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6137 * c-indentation-style: gnu
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6138 * indent-tabs-mode: t
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6139 * 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
6140 * fill-column: 79
4702b23921b4 Avoid doubly tagging parse.y when both parse.c and parse.y are given on
Francesco Potortì <pot@gnu.org>
parents: 44114
diff changeset
6141 * c-font-lock-extra-types: ("FILE" "bool" "language" "linebuffer" "fdesc")
42042
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6142 * End:
481d38f6aec2 * etags.c (PHP_functions): New function by Diez B. Roggisch,
Francesco Potortì <pot@gnu.org>
parents: 39317
diff changeset
6143 */