diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-06-25 03:26:45 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-06-25 03:26:45 +0000 |
commit | 34e6028a410937e80cb8c4b00668714868da3705 (patch) | |
tree | 425f07edbec9773890b22eddb869d4660e88dab1 /lisp/vc-svn.el | |
parent | 2913a58d6ea483da82a580ae8180cf8b6554add3 (diff) | |
download | emacs-34e6028a410937e80cb8c4b00668714868da3705.tar.gz |
(vc-annotate-parent-rev): Pacify byte compiler.
(vc-svn-parse-status): Do not set the vc-backend property.
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r-- | lisp/vc-svn.el | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index a0ff184a7a0..30bf8d4ccf9 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el @@ -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)) |