aboutsummaryrefslogtreecommitdiff
path: root/x11-wm/afterstep-stable
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2014-04-13 17:39:57 +0000
committerGreg Lewis <glewis@FreeBSD.org>2014-04-13 17:39:57 +0000
commitb018584ae229b97aa22e8693faa771e2ee92c3ac (patch)
tree7435291c46e2c60e667a3515eac94cb49d5ff731 /x11-wm/afterstep-stable
parent1cc13b8fa26b1a65ba6ccaa3e648290204f5fdaa (diff)
downloadports-b018584ae229b97aa22e8693faa771e2ee92c3ac.tar.gz
ports-b018584ae229b97aa22e8693faa771e2ee92c3ac.zip
. Don't try to represent a unicode literal in a character literal. In this
case just use the decimal literal. . Add $FreeBSD$.
Notes
Notes: svn path=/head/; revision=351232
Diffstat (limited to 'x11-wm/afterstep-stable')
-rw-r--r--x11-wm/afterstep-stable/files/patch-src-ASDocGen-xmlproc.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/x11-wm/afterstep-stable/files/patch-src-ASDocGen-xmlproc.c b/x11-wm/afterstep-stable/files/patch-src-ASDocGen-xmlproc.c
index 7fdea4ce4c55..6ed9fc254eae 100644
--- a/x11-wm/afterstep-stable/files/patch-src-ASDocGen-xmlproc.c
+++ b/x11-wm/afterstep-stable/files/patch-src-ASDocGen-xmlproc.c
@@ -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]);