about summary refs log tree commit diff
path: root/converter/other/pstopnm.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2019-03-01 03:42:05 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2019-03-01 03:42:05 +0000
commit0955c115a57dd47a518a784d119407b7d6c0b9d3 (patch)
treece12c8d46165b8c38a5dda10cb4de4f1565eb4cb /converter/other/pstopnm.c
parentc06fb21632b914560603591936ade6c6a1b31e00 (diff)
downloadnetpbm-mirror-0955c115a57dd47a518a784d119407b7d6c0b9d3.tar.gz
netpbm-mirror-0955c115a57dd47a518a784d119407b7d6c0b9d3.tar.xz
netpbm-mirror-0955c115a57dd47a518a784d119407b7d6c0b9d3.zip
Fix bug: -textalphabits has no effect
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3552 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/pstopnm.c')
-rw-r--r--converter/other/pstopnm.c4
1 files changed, 2 insertions, 2 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));