emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] fix syntax errors in rst.el


From: Jim Meyering
Subject: [PATCH] fix syntax errors in rst.el
Date: Tue, 04 Jan 2011 10:44:12 +0100

I tried to bootstrap from the latest in git
[84d4dcb4ef6c259e43a75b5cae2b867c9a8f6fd7] and found that it
failed due to syntax errors.  Here's the fix:

>From 5f6489721ef3aa1940bb9703c40eee5edca55359 Mon Sep 17 00:00:00 2001
From: Jim Meyering <address@hidden>
Date: Tue, 4 Jan 2011 10:36:39 +0100
Subject: [PATCH] fix syntax errors in rst.el

* textmodes/rst.el (rst-compile-pdf-preview): Add missing close-parens.
(rst-compile-slides-preview): Likewise.
---
 lisp/ChangeLog        |    5 +++++
 lisp/textmodes/rst.el |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9878c27..193b65a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2011-01-04  Jim Meyering  <address@hidden>
+
+       * textmodes/rst.el (rst-compile-pdf-preview): Add missing close-parens.
+       (rst-compile-slides-preview): Likewise.
+
 2011-01-04  Glenn Morris  <address@hidden>

        * textmodes/rst.el (rst-compile-toolsets): Make it a defcustom.
diff --git a/lisp/textmodes/rst.el b/lisp/textmodes/rst.el
index bbeab60..6df94bb 100644
--- a/lisp/textmodes/rst.el
+++ b/lisp/textmodes/rst.el
@@ -3370,7 +3370,7 @@ or of the entire buffer, if the region is not selected."
     (start-process-shell-command "rst-pdf-preview" nil command)
     ;; Note: you could also use (compile command) to view the compilation
     ;; output.
-    ))
+    ))))

 (defvar rst-slides-program "firefox"
   "Program used to preview S5 slides.")
@@ -3388,7 +3388,7 @@ or of the entire buffer, if the region is not selected."
     (start-process-shell-command "rst-slides-preview" nil command)
     ;; Note: you could also use (compile command) to view the compilation
     ;; output.
-    ))
+    ))))


 
--
1.7.3.4



reply via email to

[Prev in Thread] Current Thread [Next in Thread]