diff --git a/doc/gl2ps.tex b/doc/gl2ps.tex
index 38a69b6570486f243645e15ece72bb7b3d9fd0a9..a71485b143a84ce43c11ed60600c4ab31e6ee1a7 100644
--- a/doc/gl2ps.tex
+++ b/doc/gl2ps.tex
@@ -1,4 +1,4 @@
-%  $Id: gl2ps.tex,v 1.226 2007-05-02 20:57:15 geuzaine Exp $
+%  $Id: gl2ps.tex,v 1.227 2009-02-27 21:25:56 geuzaine Exp $
 %
 %  GL2PS, an OpenGL to PostScript Printing Library
 %  Copyright (C) 1999-2007 Christophe Geuzaine <geuz@geuz.org>
@@ -59,7 +59,7 @@
 
 \title{GL2PS: an OpenGL to PostScript printing library}
 \author{Christophe Geuzaine}
-\date{Version 1.3.3, ? ? 2007}
+\date{Version 1.3.3, ? ? 2009}
 
 \maketitle
 
@@ -999,8 +999,8 @@ seem to be available anymore).
 \item[1.3.2] (Nov 5, 2006) Fixed bug in polygon offset computation;
   fixed landscape mode in SVG; fixed potential out-of-bounds array
   access in stippling pattern parser.
-\item[1.3.3] (, 2007) Fixed memory leak in PDF code; added
-  \dd{gl2psGetOptions}; nicer SVG rendering (crispEdges).
+\item[1.3.3] (, 2009) Fixed memory leak in PDF code; added
+  \dd{gl2psGetOptions}; nicer SVG rendering (crispEdges, font attributes).
 \end{description}
 
 \end{document}
diff --git a/gl2ps.c b/gl2ps.c
index 92c047ec2cf10774d510e934be04028e4ee143cc..195e38c22d724e5908baf916b9834c0ab0411f3e 100644
--- a/gl2ps.c
+++ b/gl2ps.c
@@ -1,4 +1,4 @@
-/* $Id: gl2ps.c,v 1.251 2009-02-27 21:25:08 geuzaine Exp $ */
+/* $Id: gl2ps.c,v 1.252 2009-02-27 21:30:19 geuzaine Exp $ */
 /*
  * GL2PS, an OpenGL to PostScript Printing Library
  * Copyright (C) 1999-2007 Christophe Geuzaine <geuz@geuz.org>
@@ -1772,7 +1772,7 @@ static void gl2psAddPlanesInBspTreeImage(GL2PSprimitive *prim,
 
   if((*tree == NULL) && (prim->numverts > 2)){
     /* don't cull if transparent
-    for(i = 0; i < prim->numverts-1; i++)
+    for(i = 0; i < prim->numverts - 1; i++)
       if(prim->verts[i].rgba[3] < 1.0F) return;
     */
     head = (GL2PSbsptree2d*)gl2psMalloc(sizeof(GL2PSbsptree2d));