X-Git-Url: http://andersk.mit.edu/gitweb/splint.git/blobdiff_plain/616915ddfdcba888735f45cbd9c26c9b5383ee2c..36250f225665415476f402c25e138d99fa18381b:/src/filelocList.c diff --git a/src/filelocList.c b/src/filelocList.c index 8c3b4c2..cb4454b 100644 --- a/src/filelocList.c +++ b/src/filelocList.c @@ -1,6 +1,6 @@ /* -** LCLint - annotation-assisted static program checker -** Copyright (C) 1994-2000 University of Virginia, +** Splint - annotation-assisted static program checker +** Copyright (C) 1994-2002 University of Virginia, ** Massachusetts Institute of Technology ** ** This program is free software; you can redistribute it and/or modify it @@ -17,15 +17,15 @@ ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, ** MA 02111-1307, USA. ** -** For information on lclint: lclint-request@cs.virginia.edu -** To report a bug: lclint-bug@cs.virginia.edu -** For more information: http://lclint.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 */ /* ** filelocList.c (from slist_template.c) */ -# include "lclintMacros.nf" +# include "splintMacros.nf" # include "basic.h" # include "filelocList.h" @@ -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])); }