From 875439bb698b255d97a6182d55ff0775e6e16f8d Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Mon, 6 Nov 2006 00:53:53 +0000
Subject: [PATCH] *** empty log message ***

---
 doc/gl2ps.tex | 4 ++--
 gl2ps.c       | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/doc/gl2ps.tex b/doc/gl2ps.tex
index d07eb64..3de4521 100644
--- a/doc/gl2ps.tex
+++ b/doc/gl2ps.tex
@@ -1,4 +1,4 @@
-%  $Id: gl2ps.tex,v 1.222 2006-11-06 00:48:06 geuzaine Exp $
+%  $Id: gl2ps.tex,v 1.223 2006-11-06 00:53:53 geuzaine Exp $
 %
 %  GL2PS, an OpenGL to PostScript Printing Library
 %  Copyright (C) 1999-2006 Christophe Geuzaine <geuz@geuz.org>
@@ -992,7 +992,7 @@ seem to be available anymore).
   PostScript output, where a viewport could be drawn with an unwanted
   colored outline.
 \item[1.3.2] (Nov 5, 2006) Fixed bug in polygon offset computation;
-  fixed landscape mode in SVG; fixed possible out-of-bound array
+  fixed landscape mode in SVG; fixed potential out-of-bounds array
   access in stippling pattern parser.
 \end{description}
 
diff --git a/gl2ps.c b/gl2ps.c
index 244424c..3e8642f 100644
--- a/gl2ps.c
+++ b/gl2ps.c
@@ -1,4 +1,4 @@
-/* $Id: gl2ps.c,v 1.242 2006-10-30 17:11:52 geuzaine Exp $ */
+/* $Id: gl2ps.c,v 1.243 2006-11-06 00:53:53 geuzaine Exp $ */
 /*
  * GL2PS, an OpenGL to PostScript Printing Library
  * Copyright (C) 1999-2006 Christophe Geuzaine <geuz@geuz.org>
@@ -4870,8 +4870,8 @@ static void gl2psPrintSVGHeader(void)
   gl2psPrintf("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n");
   gl2psPrintf("<svg xmlns=\"http://www.w3.org/2000/svg\"\n");
   gl2psPrintf("     xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n"
-	      "     width=\"%dpx\" height=\"%dpx\" viewBox=\"%d %d %d %d\">\n",
-	      width, height, x, y, width, height);
+              "     width=\"%dpx\" height=\"%dpx\" viewBox=\"%d %d %d %d\">\n",
+              width, height, x, y, width, height);
   gl2psPrintf("<title>%s</title>\n", gl2ps->title);
   gl2psPrintf("<desc>\n");
   gl2psPrintf("Creator: GL2PS %d.%d.%d%s, %s\n"
-- 
GitLab