comparison lisp/vc-hooks.el @ 93940:64ee685db81b

(vc-default-mode-line-string): Use ? for missing.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 09 Apr 2008 20:23:11 +0000
parents f6fe1c1d8ba6
children bfc762f0b49c
comparison
equal deleted inserted replaced
93939:7808c9a25ea8 93940:64ee685db81b
864 ((eq state 'removed) 864 ((eq state 'removed)
865 (setq state-echo "File removed from the VC system") 865 (setq state-echo "File removed from the VC system")
866 (concat backend "!" rev)) 866 (concat backend "!" rev))
867 ((eq state 'missing) 867 ((eq state 'missing)
868 (setq state-echo "File tracked by the VC system, but missing from the file system") 868 (setq state-echo "File tracked by the VC system, but missing from the file system")
869 (concat backend "^" rev)) 869 (concat backend "?" rev))
870 (t 870 (t
871 ;; Not just for the 'edited state, but also a fallback 871 ;; Not just for the 'edited state, but also a fallback
872 ;; for all other states. Think about different symbols 872 ;; for all other states. Think about different symbols
873 ;; for 'needs-patch and 'needs-merge. 873 ;; for 'needs-patch and 'needs-merge.
874 (setq state-echo "Locally modified file") 874 (setq state-echo "Locally modified file")