[gs-cvs] rev 8649 - trunk/gs/lib

alexcher at ghostscript.com alexcher at ghostscript.com
Sat Apr 19 05:48:16 PDT 2008


Author: alexcher
Date: 2008-04-19 05:48:15 -0700 (Sat, 19 Apr 2008)
New Revision: 8649

Modified:
   trunk/gs/lib/pdfwrite.ps
Log:
Fix PDF transmuting utilities. Remove '#' from the list of characters that
may occur in PDF names unescaped. Bug 689770.


Modified: trunk/gs/lib/pdfwrite.ps
===================================================================
--- trunk/gs/lib/pdfwrite.ps	2008-04-19 04:49:20 UTC (rev 8648)
+++ trunk/gs/lib/pdfwrite.ps	2008-04-19 12:48:15 UTC (rev 8649)
@@ -151,7 +151,7 @@
 % set of valid name characters. PDF 1.1 and earlier allowed spaces in names
 % which probably wouldn't make it past the tokenizer anyway.
 /pdfnamechars
-  (!"#$&'*+,-.0123456789:;=?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\\^_`abcdefghijklmnopqrstuvwxyz|~)
+  (!"$&'*+,-.0123456789:;=?@ABCDEFGHIJKLMNOPQRSTUVWXYZ\\^_`abcdefghijklmnopqrstuvwxyz|~)
 readonly def
 /pdfwritename {		% <name> pdfwritename -
   (/) ows .namestring {



More information about the gs-cvs mailing list