mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-10 12:53:03 +00:00
formatting changes
* data/c.m4: Fix comments, put macros in a more natural order. Space changes (from M-x whitespace-cleanup). * src/location.c: Fix spaces. * tests/actions.at: Space changes.
This commit is contained in:
@@ -107,7 +107,7 @@ location_print (FILE *out, location loc)
|
||||
quotearg_n_style (3, escape_quoting_style, loc.start.file));
|
||||
if (0 <= loc.start.line)
|
||||
{
|
||||
res += fprintf(out, ":%d", loc.start.line);
|
||||
res += fprintf (out, ":%d", loc.start.line);
|
||||
if (0 <= loc.start.column)
|
||||
res += fprintf (out, ".%d", loc.start.column);
|
||||
}
|
||||
@@ -118,7 +118,7 @@ location_print (FILE *out, location loc)
|
||||
loc.end.file));
|
||||
if (0 <= loc.end.line)
|
||||
{
|
||||
res += fprintf(out, ":%d", loc.end.line);
|
||||
res += fprintf (out, ":%d", loc.end.line);
|
||||
if (0 <= end_col)
|
||||
res += fprintf (out, ".%d", end_col);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user