G_buffer += sentinel_length;
}
else
- ++G_buffer;
+ {
+ ++G_buffer;
+ }
if (optind == argc)
{
errors = tac_stdin_to_mem ();
}
else
- for (; optind < argc; ++optind)
- {
- if (STREQ (argv[optind], "-"))
- {
- have_read_stdin = 1;
- errors |= tac_stdin_to_mem ();
- }
- else
- errors |= tac_file (argv[optind]);
- }
+ {
+ for (; optind < argc; ++optind)
+ {
+ if (STREQ (argv[optind], "-"))
+ {
+ have_read_stdin = 1;
+ errors |= tac_stdin_to_mem ();
+ }
+ else
+ errors |= tac_file (argv[optind]);
+ }
+ }
/* Flush the output buffer. */
output ((char *) NULL, (char *) NULL);