]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
authorReiner Steib <Reiner.Steib@gmx.de>
Thu, 18 Oct 2007 19:30:23 +0000 (19:30 +0000)
committerReiner Steib <Reiner.Steib@gmx.de>
Thu, 18 Oct 2007 19:30:23 +0000 (19:30 +0000)
(doc-view-pdf/ps->png-sentinel, doc-view-pdf/ps->png)
(doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
(doc-view-ps->pdf-sentinel, doc-view-ps->pdf): Remove superfluous
messages.

lisp/ChangeLog
lisp/doc-view.el

index 7f0615e1dd5d9243287086e67592fb6bb9bdc4a6..79830aa53d61f7ac64843a993657d60a2235aaca 100644 (file)
@@ -1,3 +1,11 @@
+2007-10-18  Tassilo Horn  <tassilo@member.fsf.org>
+
+       * doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-dvi->pdf)
+       (doc-view-pdf/ps->png-sentinel, doc-view-pdf/ps->png)
+       (doc-view-pdf->txt-sentinel, doc-view-pdf->txt)
+       (doc-view-ps->pdf-sentinel, doc-view-ps->pdf): Remove superfluous
+       messages.
+
 2007-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
 
        * doc-view.el (doc-view-ghostscript-options, doc-view-ps->pdf):
index 241b87065d3ec25a9bf09c3af966d5ae53da9b90..da116fa2bdea5ccea0eedc9b46d852671e8aca1e 100644 (file)
@@ -390,7 +390,6 @@ It's a subdirectory of `doc-view-cache-directory'."
     (set-buffer (process-get proc 'buffer))
     (setq doc-view-current-converter-process nil
          mode-line-process nil)
-    (message "DocView: finished conversion from DVI to PDF!")
     ;; Now go on converting this PDF to a set of PNG files.
     (let* ((pdf (process-get proc 'pdf-file))
           (png (concat (doc-view-current-cache-dir)
@@ -399,7 +398,6 @@ It's a subdirectory of `doc-view-cache-directory'."
 
 (defun doc-view-dvi->pdf (dvi pdf)
   "Convert DVI to PDF asynchrounously."
-  (message "DocView: converting DVI to PDF now!")
   (setq doc-view-current-converter-process
        (start-process "dvi->pdf" doc-view-conversion-buffer
                       doc-view-dvipdfm-program
@@ -420,13 +418,11 @@ It's a subdirectory of `doc-view-cache-directory'."
     (when doc-view-current-timer
       (cancel-timer doc-view-current-timer)
       (setq doc-view-current-timer nil))
-    (message "DocView: finished conversion from PDF/PS to PNG!")
     ;; Yippie, finished.  Update the display!
     (doc-view-display doc-view-current-doc)))
 
 (defun doc-view-pdf/ps->png (pdf-ps png)
   "Convert PDF-PS to PNG asynchrounously."
-  (message "DocView: converting PDF or PS to PNG now!")
   (setq doc-view-current-converter-process
        (apply 'start-process
               (append (list "pdf/ps->png" doc-view-conversion-buffer
@@ -453,7 +449,6 @@ It's a subdirectory of `doc-view-cache-directory'."
       (set-buffer proc-buffer)
       (setq doc-view-current-converter-process nil
            mode-line-process nil)
-      (message "DocView: finished conversion from PDF to TXT!")
       ;; If the user looks at the DocView buffer where the conversion was
       ;; performed, search anew.  This time it will be queried for a regexp.
       (when (eq current-buffer proc-buffer)
@@ -461,7 +456,6 @@ It's a subdirectory of `doc-view-cache-directory'."
 
 (defun doc-view-pdf->txt (pdf txt)
   "Convert PDF to TXT asynchrounously."
-  (message "DocView: converting PDF to TXT now!")
   (setq doc-view-current-converter-process
        (start-process "pdf->txt" doc-view-conversion-buffer
                       doc-view-pdftotext-program "-raw"
@@ -477,7 +471,6 @@ It's a subdirectory of `doc-view-cache-directory'."
     (set-buffer (process-get proc 'buffer))
     (setq doc-view-current-converter-process nil
          mode-line-process nil)
-    (message "DocView: finished conversion from PS to PDF!")
     ;; Now we can transform to plain text.
     (doc-view-pdf->txt (process-get proc 'pdf-file)
                       (concat (doc-view-current-cache-dir)
@@ -485,7 +478,6 @@ It's a subdirectory of `doc-view-cache-directory'."
 
 (defun doc-view-ps->pdf (ps pdf)
   "Convert PS to PDF asynchronously."
-  (message "DocView: converting PS to PDF now!")
   (setq doc-view-current-converter-process
        (start-process "ps->pdf" doc-view-conversion-buffer
                       doc-view-ps2pdf-program