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: vc-bzr.el syntax error Date: Thu, 03 Dec 2009 10:28:26 +0100 Message-ID: <877ht4h0ed.fsf@meyering.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1259832548 15812 80.91.229.12 (3 Dec 2009 09:29:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 3 Dec 2009 09:29:08 +0000 (UTC) To: emacs-devel@gnu.org, dann@ics.uci.edu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Dec 03 10:29:01 2009 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.50) id 1NG7zg-0003TX-W8 for ged-emacs-devel@m.gmane.org; Thu, 03 Dec 2009 10:29:01 +0100 Original-Received: from localhost ([127.0.0.1]:34065 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NG7zg-0002dF-M2 for ged-emacs-devel@m.gmane.org; Thu, 03 Dec 2009 04:29:00 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NG7zL-0002Vl-37 for emacs-devel@gnu.org; Thu, 03 Dec 2009 04:28:39 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NG7zG-0002Ty-0P for emacs-devel@gnu.org; Thu, 03 Dec 2009 04:28:38 -0500 Original-Received: from [199.232.76.173] (port=52798 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NG7zF-0002Tu-TC for emacs-devel@gnu.org; Thu, 03 Dec 2009 04:28:33 -0500 Original-Received: from smtp3-g21.free.fr ([212.27.42.3]:52291) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NG7zF-0000wJ-7Q for emacs-devel@gnu.org; Thu, 03 Dec 2009 04:28:33 -0500 Original-Received: from smtp3-g21.free.fr (localhost [127.0.0.1]) by smtp3-g21.free.fr (Postfix) with ESMTP id CBCCC8180A8 for ; Thu, 3 Dec 2009 10:28:29 +0100 (CET) Original-Received: from mx.meyering.net (mx.meyering.net [82.230.74.64]) by smtp3-g21.free.fr (Postfix) with ESMTP id E7D0A818134 for ; Thu, 3 Dec 2009 10:28:26 +0100 (CET) Original-Received: by rho.meyering.net (Acme Bit-Twister, from userid 1000) id C802C20CD9; Thu, 3 Dec 2009 10:28:26 +0100 (CET) Original-Lines: 46 X-detected-operating-system: by monty-python.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:118174 Archived-At: Without the patch below, bootstrap fails with this: vc-bzr.el:775:10:Warning: reference to free variable `shelve' vc-bzr.el:778:34:Warning: reference to free variable `shelve-help-echo' vc-bzr.el:792:59:Error: Invalid read syntax: ")" Compiling /home/j/w/co/emacs/lisp/vc-git.el >From f9aec32474463fc356eff02fd191c5b827365e94 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 3 Dec 2009 10:23:26 +0100 Subject: [PATCH] vc-bzr.el: fix a syntax error * vc-bzr.el (vc-bzr-dir-extra-headers): Remove stray parentheses. --- lisp/ChangeLog | 5 +++++ lisp/vc-bzr.el | 2 +- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 73e4706..0e2918b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2009-12-03 Jim Meyering + + vc-bzr.el: fix a syntax error + * vc-bzr.el (vc-bzr-dir-extra-headers): Remove stray parentheses. + 2009-12-03 Dan Nicolaescu Add support for bzr shelve/unshelve. diff --git a/lisp/vc-bzr.el b/lisp/vc-bzr.el index 1173d86..eb021f5 100644 --- a/lisp/vc-bzr.el +++ b/lisp/vc-bzr.el @@ -771,7 +771,7 @@ stream. Standard error output is discarded." (concat (propertize "Checkout of branch : " 'face 'font-lock-type-face) (propertize light-checkout-branch 'face 'font-lock-variable-name-face) - "\n"))))) + "\n")) (if shelve (concat (propertize "Shelves :\n" 'face 'font-lock-type-face -- 1.6.6.rc1.244.g34c92