svn commit: r351232 - head/x11-wm/afterstep-stable/files
Greg Lewis
glewis at FreeBSD.org
Sun Apr 13 17:39:58 UTC 2014
Author: glewis
Date: Sun Apr 13 17:39:57 2014
New Revision: 351232
URL: http://svnweb.freebsd.org/changeset/ports/351232
QAT: https://qat.redports.org/buildarchive/r351232/
Log:
. Don't try to represent a unicode literal in a character literal. In this
case just use the decimal literal.
. Add $FreeBSD$.
Modified:
head/x11-wm/afterstep-stable/files/patch-src-ASDocGen-xmlproc.c
Modified: head/x11-wm/afterstep-stable/files/patch-src-ASDocGen-xmlproc.c
==============================================================================
--- head/x11-wm/afterstep-stable/files/patch-src-ASDocGen-xmlproc.c Sun Apr 13 17:11:21 2014 (r351231)
+++ head/x11-wm/afterstep-stable/files/patch-src-ASDocGen-xmlproc.c Sun Apr 13 17:39:57 2014 (r351232)
@@ -1,6 +1,17 @@
---- src/ASDocGen/xmlproc.c.orig 2008-09-15 15:54:38.000000000 +0000
-+++ src/ASDocGen/xmlproc.c 2008-09-15 16:00:20.000000000 +0000
-@@ -504,9 +504,10 @@
+$FreeBSD$
+
+--- src/ASDocGen/xmlproc.c.orig 2013-05-01 06:34:11.000000000 -0700
++++ src/ASDocGen/xmlproc.c 2014-04-13 10:29:12.000000000 -0700
+@@ -179,7 +179,7 @@
+ fputs( "\\&", state->dest_fp );
+ else if ( c == '\\' && state->doc_type == DocType_NROFF )
+ fputc( '\\', state->dest_fp );
+- else if ( c == '' && state->doc_type == DocType_NROFF )
++ else if ( c == 152 /*''*/ && state->doc_type == DocType_NROFF )
+ c = '~';
+ fputc( c, state->dest_fp );
+ }
+@@ -514,9 +514,10 @@
char *target = NULL, *target2 ;
char *term = NULL, *term2 ;
char *ptr = &(state->dest_file[strlen(state->dest_file)-4]);
More information about the svn-ports-all
mailing list