1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-18 10:16:51 +00:00

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.
This commit is contained in:
Bastien Guerry 2008-07-22 08:42:19 +00:00
parent 2ae8360b51
commit 276db9eb1f
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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)))