diff options
author | Bastien Guerry <bzg@altern.org> | 2008-07-22 08:42:19 +0000 |
---|---|---|
committer | Bastien Guerry <bzg@altern.org> | 2008-07-22 08:42:19 +0000 |
commit | 276db9eb1f0c757815434a1a699740ded3518abc (patch) | |
tree | f72c3e85a487a2159582855e839d73d894df92d8 | |
parent | 2ae8360b51a1fc29067b0c37039036ee72d1f35a (diff) | |
download | emacs-276db9eb1f0c757815434a1a699740ded3518abc.tar.gz |
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/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/vc-dir.el | 2 |
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 @@ +2008-07-22 Sven Joachim <svenjoac@gmx.de> (tiny change) + + * vc-dir.el (vc-dir-recompute-file-state): Fix mismatched + paenthesis. + 2008-07-22 Miles Bader <miles@gnu.org> * 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))) |