From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jim Meyering Newsgroups: gmane.emacs.devel Subject: [PATCH] fix syntax errors in rst.el Date: Tue, 04 Jan 2011 10:44:12 +0100 Message-ID: <87d3oddmvn.fsf@meyering.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1294134274 302 80.91.229.12 (4 Jan 2011 09:44:34 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 4 Jan 2011 09:44:34 +0000 (UTC) To: Emacs development discussions Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jan 04 10:44:30 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Pa3RN-0003gJ-AN for ged-emacs-devel@m.gmane.org; Tue, 04 Jan 2011 10:44:29 +0100 Original-Received: from localhost ([127.0.0.1]:59695 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pa3RM-0003CJ-NK for ged-emacs-devel@m.gmane.org; Tue, 04 Jan 2011 04:44:28 -0500 Original-Received: from [140.186.70.92] (port=54230 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pa3RA-0003Bp-AQ for emacs-devel@gnu.org; Tue, 04 Jan 2011 04:44:17 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pa3R9-0006Nr-CI for emacs-devel@gnu.org; Tue, 04 Jan 2011 04:44:16 -0500 Original-Received: from mx.meyering.net ([82.230.74.64]:43378) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pa3R9-0006NN-1y for emacs-devel@gnu.org; Tue, 04 Jan 2011 04:44:15 -0500 Original-Received: by rho.meyering.net (Acme Bit-Twister, from userid 1000) id 9F164601C8; Tue, 4 Jan 2011 10:44:12 +0100 (CET) Original-Lines: 53 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:134251 Archived-At: 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 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 + + * textmodes/rst.el (rst-compile-pdf-preview): Add missing close-parens. + (rst-compile-slides-preview): Likewise. + 2011-01-04 Glenn Morris * 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