]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix vc.el breakage.
authorDeepak Goel <deego@gnufans.org>
Thu, 6 Dec 2007 19:56:41 +0000 (19:56 +0000)
committerDeepak Goel <deego@gnufans.org>
Thu, 6 Dec 2007 19:56:41 +0000 (19:56 +0000)
lisp/ChangeLog
lisp/gnus/ChangeLog
lisp/vc.el

index 236419d04f6c6e63d34aee4b926a39fff2ed033a..a552490c02bb012b3c1337624d066892fc2711fa 100644 (file)
@@ -1,8 +1,7 @@
 2007-12-06  D. Goel  <deego3@gmail.com>
 
-       * vc.el: Fix breakage.
+       * vc.el (vc-update): Fix breakage.
        * ibuffer.el (ibuffer-current-buffer): Ditto.
-       * gnus/gnus-start.el (gnus-load): Ditto.
 
        * allout.el (allout-write-file-hook-handler): Fix buggy call(s) to `error'.
        * textmodes/reftex.el (reftex-TeX-master-file): Ditto.
index 5a2db800f0a6a6ce46e63f1f10b7f9aa1254aada..df1865b2767a1605851bee33f447eeb7c51d314c 100644 (file)
@@ -1,4 +1,5 @@
 2007-12-06  D. Goel  <deego3@gmail.com>
+       * gnus-start.el (gnus-load): Fix breakage from last change.
 
        * gnus-art.el (article-make-date-line): Fix buggy call to `error'.
        * gnus-start.el (gnus-load): Ditto.
index 6fd6e25bd888500a3148cf81162f5dc26a6c8a7b..995bcc25692afdf697d6e33936707af16bf9f1a6 100644 (file)
@@ -2620,12 +2620,12 @@ changes from the current branch are merged into the working file."
       (if (eq (vc-checkout-model file) 'locking)
          (if (eq (vc-state file) 'edited)
              (error "%s"
-              (substitute-command-keys
-               "File is locked--type \\[vc-revert] to discard changes"))
+                    (substitute-command-keys
+                     "File is locked--type \\[vc-revert] to discard changes"))
            (error "Unexpected file state (%s) -- type %s"
-            (vc-state file)
-            (substitute-command-keys
-             "\\[vc-next-action] to correct"))
+                  (vc-state file)
+                  (substitute-command-keys
+                   "\\[vc-next-action] to correct")))
        (if (not (vc-find-backend-function (vc-backend file) 'merge-news))
            (error "Sorry, merging news is not implemented for %s"
                   (vc-backend file))