X-Git-Url: http://andersk.mit.edu/gitweb/splint.git/blobdiff_plain/77d3741943947b83a5d6a10a5e31650a1005dbde..35e063d82040a7c7a6da8634cf377e19ee0662d1:/src/scanline.c diff --git a/src/scanline.c b/src/scanline.c index a0be78d..a9f8be6 100644 --- a/src/scanline.c +++ b/src/scanline.c @@ -17,8 +17,8 @@ ** 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 information on splint: info@splint.org +** To report a bug: splint-bug@splint.org ** For more information: http://www.splint.org */ /* @@ -39,7 +39,7 @@ ** and determine its kind. */ -# include "lclintMacros.nf" +# include "splintMacros.nf" # include "llbasic.h" # include "signature.h" # include "signature2.h" @@ -755,7 +755,7 @@ lscanLineInit (void) ltoken_compose = LSLReserveToken (LST_COMPOSESYM, "\\composeSort"); ltoken_if = LSLReserveToken (LST_ifTOKEN, "if"); - (void) LSLReserveToken (LST_LPAR, "("); + (void) LSLReserveToken (LST_LPAR, " ("); (void) LSLReserveToken (LST_RPAR, ")"); (void) LSLReserveToken (LST_COMMA, ","); (void) LSLReserveToken (LST_COLON, ":"); @@ -803,20 +803,20 @@ lscanLineCleanup (void) charCode lscanCharClass (char c) { - return charClass[(int)(c)].code; + return charClass[ (int) (c)].code; } bool LSLIsEndComment (char c) { - return charClass[(int)(c)].endCommentChar; + return charClass[ (int) (c)].endCommentChar; } void lsetCharClass (char c, charCode cod) { - charClass[(int)(c)].code = cod; + charClass[ (int) (c)].code = cod; } void lsetEndCommentChar (char c, bool flag) { - charClass[(int)(c)].endCommentChar = flag; + charClass[ (int) (c)].endCommentChar = flag; }