thegooglecodearchive / editra-plugins

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

[codebrowser] C functions that return pointers have asterisk shown in name if asterisk is not separated from function name #146

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I am using CodeBrowser 1.0 and Editra 0.5.60 on Mac OS.

When browsing C source code, functions that return pointers, and where the 
asterisk is not 
separated from the function name, are listed with an asterisk in CodeBrowser.

For example, if I have the following function:

int *test()
{
  return 0;
}

then this will show up as "*test".  However, the following:

int * test()
{
  return 0;
}

will show up as "test", as it should.

Original issue reported on code.google.com by doc.aron...@gmail.com on 5 Jun 2010 at 1:51

GoogleCodeExporter commented 9 years ago
fixed for 1.1 in r64492

Original comment by CodyPrec...@gmail.com on 5 Jun 2010 at 8:58