lanurmi / efte

eFTE is a fork of FTE -- Folding Text Editor
GNU General Public License v2.0
30 stars 11 forks source link

reserved identifier violation #36

Closed lanurmi closed 8 years ago

lanurmi commented 14 years ago

I suggest to try the search pattern "struct _[A-Z]+" on the source files. You will find a couple of places where names begin with an underscore and an uppercase letter.

Examples:

- __SYSDEP_H http://efte.svn.sourceforge.net/viewvc/efte/trunk/src/sysdep.h?revision=1167&view=markup

This does not fit to the expected naming conventions of the C/C++ language standard. http://en.wikipedia.org/wiki/Reserved\_identifier

See also section "7.1.3 Reserved identifiers". http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1124.pdf

Reported by: elfring

Original Ticket: efte/bugs/35

lanurmi commented 8 years ago

Thank you for the suggestion. These were fixed in November 2010.

Original comment by: lanurmi