From: Bastien Guerry Date: Tue, 22 Jul 2008 08:42:19 +0000 (+0000) Subject: Fixed mismatched parenthesis in vc-dir.el. X-Git-Tag: emacs-pretest-23.0.90~4001 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=276db9eb1f0c757815434a1a699740ded3518abc;p=emacs.git Fixed mismatched parenthesis in vc-dir.el. See Sven Joachim message <87fxq2cotk.fsf@gmx.de> on [emacs-devel]. 2008-07-22 Sven Joachim (tiny change) * vc-dir.el (vc-dir-recompute-file-state): Fix mismatched paenthesis. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 729c0859ff3..3ec840f687a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-07-22 Sven Joachim (tiny change) + + * vc-dir.el (vc-dir-recompute-file-state): Fix mismatched + paenthesis. + 2008-07-22 Miles Bader * progmodes/sh-script.el (sh-newline-and-indent): Remove. diff --git a/lisp/vc-dir.el b/lisp/vc-dir.el index 1069f40e2ea..755101dd5ee 100644 --- a/lisp/vc-dir.el +++ b/lisp/vc-dir.el @@ -776,7 +776,7 @@ If it is a file, return the corresponding cons for the file itself." (when (eq vc-dir-backend 'CVS) ;; FIXME: Warning: UGLY HACK. The CVS backend caches the state ;; info, this forces the backend to update it. - (vc-call-backend vc-dir-backend 'registered fname)) + (vc-call-backend vc-dir-backend 'registered fname))) (state (vc-call-backend vc-dir-backend 'state fname)) (extra (vc-call-backend vc-dir-backend 'status-fileinfo-extra fname)))