[Nice-commit] Nice/src/nice/tools/doc htmlwriter.nice,1.23,1.24
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2004-10-07 22:04:23
|
Update of /cvsroot/nice/Nice/src/nice/tools/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13177/F:/nice/src/nice/tools/doc Modified Files: htmlwriter.nice Log Message: Don't allow redefinition of parameters in local variables. Index: htmlwriter.nice =================================================================== RCS file: /cvsroot/nice/Nice/src/nice/tools/doc/htmlwriter.nice,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** htmlwriter.nice 21 Sep 2004 14:44:08 -0000 1.23 --- htmlwriter.nice 7 Oct 2004 22:03:42 -0000 1.24 *************** *** 107,112 **** //Note: the comments is deliberately not htmlEncoded because I want people //to be able to put their own html in the comment. ! Comment c = new Comment(commentStr: comments); ! List<(?String, String)> tags = c.tags; //write the general comment (?String a, String b) = tags.removeAt(0); --- 107,112 ---- //Note: the comments is deliberately not htmlEncoded because I want people //to be able to put their own html in the comment. ! Comment comm = new Comment(commentStr: comments); ! List<(?String, String)> tags = comm.tags; //write the general comment (?String a, String b) = tags.removeAt(0); |