cvs: gd /libgd/src gd_gif_out.c gd_io.c gd_io_dp.c gd_tiff.c

[email protected] ("Mattias Bengtsson") Sun, 28 Oct 2007 23:09:09 -0000
Newsgroups php.gd.cvs
Message-ID <cvsmattias1193612949@cvsserver>
mattias		Sun Oct 28 23:09:09 2007 UTC

  Modified files:              
    /gd/libgd/src	gd_gif_out.c gd_io.c gd_io_dp.c gd_tiff.c 
  Log:
  - According to the standard, the '#' char must be at column 0 (Thanks Nuno)
  
http://cvs.php.net/viewvc.cgi/gd/libgd/src/gd_gif_out.c?r1=1.7&r2=1.8&diff_format=u
Index: gd/libgd/src/gd_gif_out.c
diff -u gd/libgd/src/gd_gif_out.c:1.7 gd/libgd/src/gd_gif_out.c:1.8
--- gd/libgd/src/gd_gif_out.c:1.7	Wed Oct 24 20:15:22 2007
+++ gd/libgd/src/gd_gif_out.c	Sun Oct 28 23:09:09 2007
@@ -831,9 +831,9 @@
 #define ARGVAL() (*++(*argv) || (--argc && *++argv))
 
 #ifdef COMPATIBLE /* But wrong! */
-	#define MAXCODE(n_bits) ((code_int) 1 << (n_bits) - 1)
+#	define MAXCODE(n_bits) ((code_int) 1 << (n_bits) - 1)
 #else /* COMPATIBLE */
-	#define MAXCODE(n_bits) (((code_int) 1 << (n_bits)) - 1)
+#	define MAXCODE(n_bits) (((code_int) 1 << (n_bits)) - 1)
 #endif /* COMPATIBLE */
 
 #define HashTabOf(i) ctx->htab[i]
http://cvs.php.net/viewvc.cgi/gd/libgd/src/gd_io.c?r1=1.9&r2=1.10&diff_format=u
Index: gd/libgd/src/gd_io.c
diff -u gd/libgd/src/gd_io.c:1.9 gd/libgd/src/gd_io.c:1.10
--- gd/libgd/src/gd_io.c:1.9	Sun Oct 28 22:04:36 2007
+++ gd/libgd/src/gd_io.c	Sun Oct 28 23:09:09 2007
@@ -10,7 +10,7 @@
  */
 
 #ifdef HAVE_CONFIG_H
-	#include "config.h"
+#	include "config.h"
 #endif
 
 #include <math.h>
http://cvs.php.net/viewvc.cgi/gd/libgd/src/gd_io_dp.c?r1=1.14&r2=1.15&diff_format=u
Index: gd/libgd/src/gd_io_dp.c
diff -u gd/libgd/src/gd_io_dp.c:1.14 gd/libgd/src/gd_io_dp.c:1.15
--- gd/libgd/src/gd_io_dp.c:1.14	Sun Oct 28 22:04:36 2007
+++ gd/libgd/src/gd_io_dp.c	Sun Oct 28 23:09:09 2007
@@ -16,7 +16,7 @@
  */
 
 #ifdef HAVE_CONFIG_H
-	#include "config.h"
+#	include "config.h"
 #endif
 
 #include <math.h>
http://cvs.php.net/viewvc.cgi/gd/libgd/src/gd_tiff.c?r1=1.15&r2=1.16&diff_format=u
Index: gd/libgd/src/gd_tiff.c
diff -u gd/libgd/src/gd_tiff.c:1.15 gd/libgd/src/gd_tiff.c:1.16
--- gd/libgd/src/gd_tiff.c:1.15	Tue Oct 23 00:38:42 2007
+++ gd/libgd/src/gd_tiff.c	Sun Oct 28 23:09:09 2007
@@ -27,10 +27,10 @@
 
    ----------------------------------------------------------------------------
  */
-/* $Id: gd_tiff.c,v 1.15 2007/10/23 00:38:42 mattias Exp $ */
+/* $Id: gd_tiff.c,v 1.16 2007/10/28 23:09:09 mattias Exp $ */
 
 #ifdef HAVE_CONFIG_H
-	#include "config.h"
+#	include "config.h"
 #endif
 
 #include <gd.h>