* lisp/doc-view.el (doc-view-pdf->txt): Allow customising the
parameters (bug#8519).
(doc-view-pdftotext-program-args): New variable.
*** New commands 'doc-view-presentation' and 'doc-view-fit-window-to-page'.
*** Added support for password-protected PDF files
+*** A new variable 'doc-view-pdftotext-program-args' has been added to
+allow controlling how the conversion to text is done.
+
** Ido
*** New user option 'ido-big-directories' to mark directories whose
names match certain regular expressions as big. Ido won't attempt to
:type 'file
:version "24.4")
+(defcustom doc-view-pdftotext-program-args '("-raw")
+ "Parameters to give to the pdftotext command."
+ :version "27.1"
+ :type '(repeat string))
+
(defcustom doc-view-pdf->png-converter-function
(if (executable-find doc-view-pdfdraw-program)
#'doc-view-pdf->png-converter-mupdf
(or (executable-find doc-view-pdftotext-program)
(error "You need the `pdftotext' program to convert a PDF to text"))
(doc-view-start-process "pdf->txt" doc-view-pdftotext-program
- (list "-raw" pdf txt)
+ (append doc-view-pdftotext-program-args
+ (list pdf txt))
callback))
(defun doc-view-current-cache-doc-pdf ()