Lines Matching refs:saved
89 register struct saved_file *saved; in input_file_push() local
91 saved = (struct saved_file *) xmalloc (sizeof *saved); in input_file_push()
93 saved->f_in = f_in; in input_file_push()
94 saved->file_name = file_name; in input_file_push()
95 saved->preprocess = preprocess; in input_file_push()
97 saved->app_save = app_push (); in input_file_push()
102 return (char *) saved; in input_file_push()
108 register struct saved_file *saved = (struct saved_file *) arg; in input_file_pop() local
112 f_in = saved->f_in; in input_file_pop()
113 file_name = saved->file_name; in input_file_pop()
114 preprocess = saved->preprocess; in input_file_pop()
116 app_pop (saved->app_save); in input_file_pop()