thegooglecodearchive / editra-plugins

Automatically exported from code.google.com/p/editra-plugins
0 stars 1 forks source link

CodeBrowser missing some functions in C. #174

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What Plugin does this relate to? What version of the Plugin?

What steps will reproduce the problem?
1. Write a C code with a function defined that way:

void
function(char *arg1, int (*arg2)(const char *))
{
}

or

void function(char *arg1, int (*arg2)) {
}

What is the expected output? What do you see instead?

The function is missing from the list.

What version of Editra are you using? On what operating system?

Editra 0.6.37 on Ubuntu 10.10 x86.

Please provide any additional information below.

Original issue reported on code.google.com by musse...@gmail.com on 23 May 2011 at 1:04

GoogleCodeExporter commented 9 years ago
The current support for C is very simple and experimental.

I suspect the parser is getting lost in the extra parens in the functions 
argspec.

Original comment by CodyPrec...@gmail.com on 23 May 2011 at 3:43