emacs-devel
[Top][All Lists]
Advanced

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

vc-bzr.el syntax error


From: Jim Meyering
Subject: vc-bzr.el syntax error
Date: Thu, 03 Dec 2009 10:28:26 +0100

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 <address@hidden>
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  <address@hidden>
+
+       vc-bzr.el: fix a syntax error
+       * vc-bzr.el (vc-bzr-dir-extra-headers): Remove stray parentheses.
+
 2009-12-03  Dan Nicolaescu  <address@hidden>

        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




reply via email to

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