X-Git-Url: http://andersk.mit.edu/gitweb/splint.git/blobdiff_plain/1b8ae6904556859bbe91aadf35b8adcc1a0611ce..0f55522abf3e990fe6984a24a351bf684c4977cc:/src/filelocList.c diff --git a/src/filelocList.c b/src/filelocList.c index 6d0ff21..cb4454b 100644 --- a/src/filelocList.c +++ b/src/filelocList.c @@ -17,8 +17,8 @@ ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, ** MA 02111-1307, USA. ** -** For information on splint: splint@cs.virginia.edu -** To report a bug: splint-bug@cs.virginia.edu +** For information on splint: info@splint.org +** To report a bug: splint-bug@splint.org ** For more information: http://www.splint.org */ /* @@ -219,6 +219,7 @@ cstring filelocList_unparseUses (filelocList s) int maxlen = context_getLineLen () - 3; cstring st = cstring_undefined; fileId lastFile = fileId_invalid; + bool parenFormat = context_getFlag (FLG_PARENFILEFORMAT); if (filelocList_isDefined (s)) { @@ -249,9 +250,19 @@ cstring filelocList_unparseUses (filelocList s) st = message ("%q, ", st); } - st = message ("%q%d,%d", - st, fileloc_lineno (s->elements[i]), - fileloc_column (s->elements[i])); + if (parenFormat) + { + st = message ("%q(%d,%d)", + st, fileloc_lineno (s->elements[i]), + fileloc_column (s->elements[i])); + } + else + { + st = message ("%q%d:%d", + st, fileloc_lineno (s->elements[i]), + fileloc_column (s->elements[i])); + } + linelen += 3 + int_log (fileloc_lineno (s->elements[i])) + int_log (fileloc_column (s->elements[i])); }