more brackets in comment fixes for simple text editor bracket matching algorithms

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9233 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-08-07 21:32:18 +00:00
commit 3730b3ee07

View file

@ -1037,8 +1037,8 @@ static Node *dump_nested(const char *parent) {
for (i=0; i<3; i++) {
char* code_ptr = Char(n->code);
while (code_ptr) {
/* Replace struct name (as in 'struct name {' ) with whitespace
name will be between struct and { */
/* Replace struct name (as in 'struct name {...}' ) with whitespace
name will be between struct and opening brace */
code_ptr = strstr(code_ptr, types_array[i]);
if (code_ptr) {