aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBastien Guerry2008-07-22 08:42:19 +0000
committerBastien Guerry2008-07-22 08:42:19 +0000
commit276db9eb1f0c757815434a1a699740ded3518abc (patch)
treef72c3e85a487a2159582855e839d73d894df92d8
parent2ae8360b51a1fc29067b0c37039036ee72d1f35a (diff)
downloademacs-276db9eb1f0c757815434a1a699740ded3518abc.tar.gz
emacs-276db9eb1f0c757815434a1a699740ded3518abc.zip
Fixed mismatched parenthesis in vc-dir.el.
See Sven Joachim message <87fxq2cotk.fsf@gmx.de> on [emacs-devel]. 2008-07-22 Sven Joachim <svenjoac@gmx.de> (tiny change) * vc-dir.el (vc-dir-recompute-file-state): Fix mismatched paenthesis.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/vc-dir.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 729c0859ff3..3ec840f687a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-07-22 Sven Joachim <svenjoac@gmx.de> (tiny change)
2
3 * vc-dir.el (vc-dir-recompute-file-state): Fix mismatched
4 paenthesis.
5
12008-07-22 Miles Bader <miles@gnu.org> 62008-07-22 Miles Bader <miles@gnu.org>
2 7
3 * progmodes/sh-script.el (sh-newline-and-indent): Remove. 8 * 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."
776 (when (eq vc-dir-backend 'CVS) 776 (when (eq vc-dir-backend 'CVS)
777 ;; FIXME: Warning: UGLY HACK. The CVS backend caches the state 777 ;; FIXME: Warning: UGLY HACK. The CVS backend caches the state
778 ;; info, this forces the backend to update it. 778 ;; info, this forces the backend to update it.
779 (vc-call-backend vc-dir-backend 'registered fname)) 779 (vc-call-backend vc-dir-backend 'registered fname)))
780 (state (vc-call-backend vc-dir-backend 'state fname)) 780 (state (vc-call-backend vc-dir-backend 'state fname))
781 (extra (vc-call-backend vc-dir-backend 781 (extra (vc-call-backend vc-dir-backend
782 'status-fileinfo-extra fname))) 782 'status-fileinfo-extra fname)))