- fprintf (out, "-%s:%d.%d",
- quotearg_n_style (3, escape_quoting_style, loc.end.file),
- loc.end.line, end_col);
- else if (loc.start.line < loc.end.line)
- fprintf (out, "-%d.%d", loc.end.line, end_col);
- else if (loc.start.column < end_col)
- fprintf (out, "-%d", end_col);
+ {
+ fprintf (out, "-%s",
+ quotearg_n_style (3, escape_quoting_style, loc.end.file));
+ if (0 <= loc.end.line)
+ {
+ fprintf(out, ":%d", loc.end.line);
+ if (0 <= end_col)
+ fprintf (out, ".%d", end_col);
+ }
+ }
+ else if (0 <= loc.end.line)
+ {
+ if (loc.start.line < loc.end.line)
+ {
+ fprintf (out, "-%d", loc.end.line);
+ if (0 <= end_col)
+ fprintf (out, ".%d", end_col);
+ }
+ else if (0 <= end_col && loc.start.column < end_col)
+ fprintf (out, "-%d", end_col);
+ }
+}
+
+void
+boundary_set_from_string (boundary *bound, char *loc_str)
+{
+ /* Must search in reverse since the file name field may
+ * contain `.' or `:'. */
+ char *delim = strrchr (loc_str, '.');
+ aver (delim);
+ *delim = '\0';
+ bound->column = atoi (delim+1);
+ delim = strrchr (loc_str, ':');
+ aver (delim);
+ *delim = '\0';
+ bound->line = atoi (delim+1);
+ bound->file = uniqstr_new (loc_str);