comparison lisp/vc-bzr.el @ 87477:b5060e79eb98

* vc-svn.el (vc-svn-parse-status): Recognize 'added, 'removed, and 'unregistered states. * vc-hooks.el (vc-state): Added 'removed state to documentation. * vc-hg (vc-hg-parse-status): Recognize 'added, 'removed, and 'up-to-date state. Deal with the possibility that C for clean might change to "=" in the next point release. * vc-git.el (vc-git-parse-status): Recognize 'removed. * vc.el (header comment): Better description of new dir-state. (vc-compatible-state): Defines which states are mutually compatible; usable with 'edited as a test for which can be committed on. (vc-dired-hook): Turn off undo in the VC-Dired buffer, a speed tweak. (vc-default-dired-state-info): Display 'removed state. * vc-bzr.el (vc-bzr-dir-state): Recognize 'added.
author Eric S. Raymond <esr@snark.thyrsus.com>
date Sat, 29 Dec 2007 13:20:49 +0000
parents 71fc7b1db920
children 21fcd219fd6e c938ab6810a4
comparison
equal deleted inserted replaced
87476:6455e422c87c 87477:b5060e79eb98
520 (while (or at-start 520 (while (or at-start
521 (eq 0 (forward-line))) 521 (eq 0 (forward-line)))
522 (setq at-start nil) 522 (setq at-start nil)
523 (cond 523 (cond
524 ((looking-at "^added") 524 ((looking-at "^added")
525 (setq current-vc-state 'edited) 525 (setq current-vc-state 'added)
526 (setq current-bzr-state 'added)) 526 (setq current-bzr-state 'added))
527 ((looking-at "^kind changed") 527 ((looking-at "^kind changed")
528 (setq current-vc-state 'edited) 528 (setq current-vc-state 'edited)
529 (setq current-bzr-state 'kindchanged)) 529 (setq current-bzr-state 'kindchanged))
530 ((looking-at "^modified") 530 ((looking-at "^modified")