Sha256: af31a0af6a69bf9519e8ea565bcd91fa960dad982b12e3825028bad2c8c40a6b

Contents?: true

Size: 953 Bytes

Versions: 2

Compression:

Stored size: 953 Bytes

Contents

/*
Bugs item #1201689, was opened at 2005-05-13 18:18
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=106556&aid=1201689&group_id=6556

Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Scott Ferguson (shf301)
Assigned to: Nobody/Anonymous (nobody)
Summary: Variable Length Argument Lists in K&R Style not Parsed

Initial Comment:
A function with a K&R style parameter list that has a 
variable length argument list will not be added to the tags file.

For example create a file, say test.c with the following code
*/
void test(a, ...)
char a;
{
    return;
}
/*
Run ctags test.c.  the tags file with only contain the line:
   a	test.c	/^char a;$/;"	v

This occurs with ctags 5.3 and 5.5.4. 

Variable length argument lists work fine if the function is in 
ANSI style, void test(char a, ...) will work fine.
*/

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ctags.rb-1.1.4 ext/vendor/ctags/Units/parser-c.r/bug1201689.c.d/input.c
ctags.rb-1.1.3 ext/vendor/ctags/Units/parser-c.r/bug1201689.c.d/input.c