comparison lib-src/ebrowse.c @ 49600:23a1cea22d13

Trailing whitespace deleted.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 04 Feb 2003 14:56:31 +0000
parents 9ce753124d1b
children 695cf19ef79e d7ddb3e565de
comparison
equal deleted inserted replaced
49599:5ade352e8d1c 49600:23a1cea22d13
2509 2509
2510 while (!LOOKING_AT2 (YYEOF, ')')) 2510 while (!LOOKING_AT2 (YYEOF, ')'))
2511 { 2511 {
2512 switch (LA1) 2512 switch (LA1)
2513 { 2513 {
2514 /* Skip over grouping parens or parameter lists in parameter 2514 /* Skip over grouping parens or parameter lists in parameter
2515 declarations. */ 2515 declarations. */
2516 case '(': 2516 case '(':
2517 skip_matching (); 2517 skip_matching ();
2518 break; 2518 break;
2519 2519
3146 /* Set CURRENT to null if no entry has to be made for the class 3146 /* Set CURRENT to null if no entry has to be made for the class
3147 parsed. This is the case for certain command line flag 3147 parsed. This is the case for certain command line flag
3148 settings. */ 3148 settings. */
3149 if ((tag != CLASS && !f_structs) || (nested && !f_nested_classes)) 3149 if ((tag != CLASS && !f_structs) || (nested && !f_nested_classes))
3150 current = NULL; 3150 current = NULL;
3151 else 3151 else
3152 { 3152 {
3153 current = add_sym (yytext, containing); 3153 current = add_sym (yytext, containing);
3154 current->pos = BUFFER_POS (); 3154 current->pos = BUFFER_POS ();
3155 current->regexp = matching_regexp (); 3155 current->regexp = matching_regexp ();
3156 current->filename = filename; 3156 current->filename = filename;
3165 3165
3166 while (!done) 3166 while (!done)
3167 { 3167 {
3168 switch (LA1) 3168 switch (LA1)
3169 { 3169 {
3170 case VIRTUAL: case PUBLIC: case PROTECTED: case PRIVATE: 3170 case VIRTUAL: case PUBLIC: case PROTECTED: case PRIVATE:
3171 MATCH (); 3171 MATCH ();
3172 break; 3172 break;
3173 3173
3174 case IDENT: 3174 case IDENT:
3175 base_class = parse_classname (); 3175 base_class = parse_classname ();