Use make-temp-file in rst.el (Bug#7646).
authorChong Yidong <cyd@stupidchicken.com>
Thu, 16 Dec 2010 01:11:21 +0000 (09:11 +0800)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 16 Dec 2010 01:11:21 +0000 (09:11 +0800)
* textmodes/rst.el (rst-compile-pdf-preview)
(rst-compile-slides-preview): Use make-temp-file.

lisp/ChangeLog
lisp/textmodes/rst.el

index f6b836d..8eda158 100644 (file)
@@ -1,3 +1,8 @@
+2010-12-16  Chong Yidong  <cyd@stupidchicken.com>
+
+       * textmodes/rst.el (rst-compile-pdf-preview)
+       (rst-compile-slides-preview): Use make-temp-file (Bug#7646).
+
 2010-12-15  Kevin Gallagher  <Kevin.Gallagher@boeing.com>
 
        * emulation/edt-mapper.el: Override mapping of function keys so
index 3f21fbe..8a4c06b 100644 (file)
@@ -3307,7 +3307,7 @@ or of the entire buffer, if the region is not selected."
 (defun rst-compile-pdf-preview ()
   "Convert the document to a PDF file and launch a preview program."
   (interactive)
-  (let* ((tmp-filename "/tmp/out.pdf")
+  (let* ((tmp-filename (make-temp-file "rst-out" nil ".pdf"))
         (command (format "rst2pdf.py %s %s && %s %s"
                          buffer-file-name tmp-filename
                          rst-pdf-program tmp-filename)))
@@ -3322,7 +3322,7 @@ or of the entire buffer, if the region is not selected."
 (defun rst-compile-slides-preview ()
   "Convert the document to an S5 slide presentation and launch a preview program."
   (interactive)
-  (let* ((tmp-filename "/tmp/slides.html")
+  (let* ((tmp-filename (make-temp-file "rst-slides" nil ".html"))
         (command (format "rst2s5.py %s %s && %s %s"
                          buffer-file-name tmp-filename
                          rst-slides-program tmp-filename)))