]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/textmodes/rst.el (rst-compile-pdf-preview)
authorAndreas Schwab <schwab@linux-m68k.org>
Tue, 4 Jan 2011 10:09:13 +0000 (11:09 +0100)
committerAndreas Schwab <schwab@linux-m68k.org>
Tue, 4 Jan 2011 10:09:13 +0000 (11:09 +0100)
(rst-compile-slides-preview): Remove extra line.

lisp/ChangeLog
lisp/textmodes/rst.el

index 66c5d1839ed0a20dac84481ebfe37eb824153c32..b41711e26dbd307a176a60d54d4d0834260da501 100644 (file)
@@ -1,3 +1,8 @@
+2011-01-04  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * textmodes/rst.el (rst-compile-pdf-preview)
+       (rst-compile-slides-preview): Remove extra line.
+
 2011-01-04  Glenn Morris  <rgm@gnu.org>
 
        * textmodes/rst.el (rst-compile-toolsets): Make it a defcustom.
index bbeab60bfd630a54da2e9556839c5dfdf8bc5997..34ac6000d0c55fcbc6ffd5b44a520d02511a7573 100644 (file)
@@ -3364,7 +3364,6 @@ or of the entire buffer, if the region is not selected."
   (let* ((tmp-filename (make-temp-file "rst-out" nil ".pdf"))
         (command (format "%s %s %s && %s %s"
                          (cadr (assq 'pdf rst-compile-toolsets))
-        (command (format "rst2pdf.py %s %s && %s %s"
                          buffer-file-name tmp-filename
                          rst-pdf-program tmp-filename)))
     (start-process-shell-command "rst-pdf-preview" nil command)
@@ -3381,8 +3380,6 @@ or of the entire buffer, if the region is not selected."
   (let* ((tmp-filename (make-temp-file "rst-slides" nil ".html"))
         (command (format "%s %s %s && %s %s"
                          (cadr (assq 's5 rst-compile-toolsets))
-        (command (format "rst2s5.py %s %s && %s %s"
-
                          buffer-file-name tmp-filename
                          rst-slides-program tmp-filename)))
     (start-process-shell-command "rst-slides-preview" nil command)