* src/reader.c (parse_skel_decl): New.

(read_declarations): Add case `tok_skel', call parse_skel_decl ().
* src/lex.h (token_t): New token `tok_skel'.
* src/lex.c (percent_table): Add skeleton option entry.
Standardize.
This commit is contained in:
Marc Autret
2001-08-30 00:41:37 +00:00
parent ff48177d25
commit 2ba3b73c58
4 changed files with 27 additions and 2 deletions

View File

@@ -941,6 +941,17 @@ parse_macro_decl (void)
macro_insert (macro_key, macro_value);
}
/*----------------------------------.
| Parse what comes after %skeleton. |
`----------------------------------*/
void
parse_skel_decl (void)
{
/* Complete with parse_dquoted_param () on the CVS branch 1.29. */
}
/*------------------------------------------.
| Parse what comes after %header_extension. |
`------------------------------------------*/
@@ -1051,6 +1062,10 @@ read_declarations (void)
case tok_define:
parse_macro_decl ();
break;
case tok_skel:
parse_skel_decl ();
break;
case tok_noop:
break;