pindent           182 syn/compile.c  static void begin(void)		{ indent++; pindent(); fprintf(output, "{"); }
pindent           183 syn/compile.c  static void save(int n)		{ nl(); pindent(); fprintf(output, "  int yypos%d= G->pos, yythunkpos%d= G->thunkpos;\n", n, n); }
pindent           184 syn/compile.c  static void label(int n)	{ nl(); pindent(); fprintf(output, "  l%d:\n", n); }
pindent           185 syn/compile.c  static void jump(int n)		{ pindent(); fprintf(output, "  goto l%d;", n); }
pindent           186 syn/compile.c  static void restore(int n)	{ pindent(); fprintf(output, "  G->pos= yypos%d; G->thunkpos= yythunkpos%d;\n", n, n); }
pindent           187 syn/compile.c  static void end(void)		{ pindent(); indent--; fprintf(output, "}\n"); }
pindent           204 syn/compile.c        pindent();
pindent           209 syn/compile.c        pindent();
pindent           214 syn/compile.c  	pindent();
pindent           217 syn/compile.c  	pindent();
pindent           221 syn/compile.c  	pindent();
pindent           230 syn/compile.c  	pindent();
pindent           249 syn/compile.c  	pindent();
pindent           257 syn/compile.c        pindent();
pindent           262 syn/compile.c        pindent();
pindent           327 syn/compile.c  	pindent(); fprintf(output, "  ;\n");
pindent           383 syn/compile.c        pindent();
pindent           394 syn/compile.c        pindent();