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

(vc-annotate-parent-rev): Pacify byte compiler.

(vc-svn-parse-status): Do not set the vc-backend property.
This commit is contained in:
Dan Nicolaescu 2008-06-25 03:26:45 +00:00
parent 2913a58d6e
commit 34e6028a41
2 changed files with 1 additions and 3 deletions

View File

@ -9,6 +9,7 @@
(vc-deduce-fileset): ... here.
* vc-svn.el (vc-annotate-parent-rev): Pacify byte compiler.
(vc-svn-parse-status): Do not set the vc-backend property.
2008-06-25 Andreas Schwab <schwab@suse.de>

View File

@ -613,9 +613,6 @@ information about FILENAME and return its status."
(setq status (char-after (line-beginning-position)))
(if (eq status ??)
(vc-file-setprop file 'vc-state 'unregistered)
;; `vc-BACKEND-registered' must not set vc-backend,
;; which is instead set in vc-registered.
(unless filename (vc-file-setprop file 'vc-backend 'SVN))
;; Use the last-modified revision, so that searching in vc-print-log
;; output works.
(vc-file-setprop file 'vc-working-revision (match-string 3))