about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--converter/other/pstopnm.c4
-rw-r--r--doc/HISTORY5
-rw-r--r--version.mk2
3 files changed, 8 insertions, 3 deletions
diff --git a/converter/other/pstopnm.c b/converter/other/pstopnm.c
index d8e18e93..f5342655 100644
--- a/converter/other/pstopnm.c
+++ b/converter/other/pstopnm.c
@@ -899,8 +899,8 @@ execGhostscript(int               const inputPipeFd,
                    "-dSAFER", "-");
     }
 
-    execl(ghostscriptProg, arg0, deviceopt, outfileopt, gopt, ropt, "-q",
-          "-dNOPAUSE", "-dSAFER", "-", NULL);
+    execl(ghostscriptProg, arg0, deviceopt, outfileopt, gopt, ropt, 
+	  textalphabitsopt, "-q", "-dNOPAUSE", "-dSAFER", "-", NULL);
 
     pm_error("execl() of Ghostscript ('%s') failed, errno=%d (%s)",
              ghostscriptProg, errno, strerror(errno));
diff --git a/doc/HISTORY b/doc/HISTORY
index c450f66e..b0461f89 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,6 +4,11 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+19.03.01 BJH  Release 10.85.03
+
+              pstopnm: Fix bug: -textalphabits has no effect.  Always broken.
+              (-textalphabits was new in Netpbm 10.53 (December 2010).
+
 19.02.10 BJH  Release 10.85.02
 
               pnmtopng: fix bug: -interlace ignored.  Broken in 10.55
diff --git a/version.mk b/version.mk
index b9247c65..3168f687 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 85
-NETPBM_POINT_RELEASE = 2
+NETPBM_POINT_RELEASE = 3