Searched refs:macro_nest (Results 1 – 7 of 7) sorted by relevance
85 int macro_nest; variable267 if (macro_nest > max_macro_nest) in input_scrub_include_sb()269 ++macro_nest; in input_scrub_include_sb()323 cond_finish_check (macro_nest); in input_scrub_next_buffer()330 --macro_nest; in input_scrub_next_buffer()
55 int macro_nest; member534 cframe->macro_nest = macro_nest; in initialize_cframe()545 if (current_cframe != NULL && current_cframe->macro_nest >= nest) in cond_finish_check()568 while (current_cframe != NULL && current_cframe->macro_nest >= nest) in cond_exit_macro()
78 extern int macro_nest;
797 if ((listing & LISTING_MACEXP) && macro_nest > 0) in read_a_source_file()811 copy = (char *) xmalloc (len + macro_nest + 2); in read_a_source_file()812 memset (copy, '>', macro_nest); in read_a_source_file()813 copy[macro_nest] = ' '; in read_a_source_file()814 memcpy (copy + macro_nest + 1, input_line_pointer, len); in read_a_source_file()815 copy[macro_nest + 1 + len] = '\0'; in read_a_source_file()2690 if (macro_nest) in s_mexit()2692 cond_exit_macro (macro_nest); in s_mexit()3150 cond_exit_macro (macro_nest); in end_repeat()
1512 (struct conditional_frame): Add macro_nest field.1513 (initialize_cframe): Initialize macro_nest.1518 * input-scrub.c (macro_nest): Make globally visible.1520 * macro.h (macro_nest): Declare.
1335 (macro_nest): New static variable.
1420 expansion. @code{macro_nest} indicates the current macro nesting level, which1433 processing an inserted macro expansion, just before decrementing macro_nest.