[4652] in Athena Bugs
vax 6.4R: etags
daemon@ATHENA.MIT.EDU (lwvanels@ATHENA.MIT.EDU)
Sat Mar 31 17:25:40 1990
From: lwvanels@ATHENA.MIT.EDU
Date: Sat, 31 Mar 90 16:26:22 -0500
To: bugs@ATHENA.MIT.EDU, bug-emacs@ATHENA.MIT.EDU
System name: ANDRE-NORTON
Type and version: CVAXSTAR 6.4R
Display type: SM
What were you trying to do?
Get etags -t to generate an appropirate tags file for functions
What's wrong:
If there's any static variables declared, etags -t will fail, and
not include a listing for the first function declared
What should have happened:
It should include a listing for the function
Please describe any relevant documentation references:
Here's a sample program that will reproduce the error:
typedef struct foo{
int i;
} Foo_type;
static float a;
int test_function()
{
return();
}
If the line with the static declaration is commented out, etags will
work properly.