aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorEric S. Raymond2007-12-28 18:16:55 +0000
committerEric S. Raymond2007-12-28 18:16:55 +0000
commit722f037fc8a4d7e22d700de4504b7db7a9927450 (patch)
tree6888a2a7ec7b7363cd39d43fdfe9eaf0274a19b0 /lisp/ChangeLog
parent0f67cc71b4047fd71b873a4e73644a097722869c (diff)
downloademacs-722f037fc8a4d7e22d700de4504b7db7a9927450.tar.gz
emacs-722f037fc8a4d7e22d700de4504b7db7a9927450.zip
* vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
states. and the new return-value convention. These are not actually used yet, just set. * vc-svn.el (vc-svn-parse-status): Set 'ignored and 'unregistered states when appropriate. * vc-hg.el (vc-hg-state,vc-hg-dir-state): Set 'ignored and 'unregistered' when appropriate. * vc-git.el: Document that we don't set the new states yet. * vc.el (vc-dired-state-info): Display 'unregistered and 'ignored states. * vc-cvs.el (vc-cvs-parse-status): Set the 'ignored state when appropriate. * vc-bzr.el (vc-bzr-dir-state): Set 'ignored and 'unregistered' when appropriate.
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog25
1 files changed, 24 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index eefada19f60..b68e3dedd35 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -17,7 +17,30 @@
17 can get extremely large. 17 can get extremely large.
18 18
19 * vc-cvs.el, vc-svn.el: Simplify backend dired-state-info 19 * vc-cvs.el, vc-svn.el: Simplify backend dired-state-info
20 functions so they don't do work that the default one can do instead 20 functions so they don't do work that the default one can do
21 instead. Also, give the default useful behavior on 'added.
22
23 * vc-hooks.el (vc-state): Document new 'ignored and 'unregistered
24 states. and the new return-value convention. These are not
25 actually used yet, just set.
26
27 * vc-svn.el (vc-svn-parse-status): Set 'ignored and 'unregistered
28 states when appropriate.
29
30 * vc-hg.el (vc-hg-state,vc-hg-dir-state): Set 'ignored and
31 'unregistered' when appropriate.
32
33 * vc-git.el: Document that we don't set the new states yet.
34
35 * vc.el (vc-dired-state-info): Display 'unregistered and
36 'ignored states.
37
38 * vc-cvs.el (vc-cvs-parse-status): Set the 'ignored state when
39 appropriate.
40
41 * vc-bzr.el (vc-bzr-dir-state): Set 'ignored and
42 'unregistered' when appropriate.
43
21 44
222007-12-28 Nick Roberts <nickrob@snap.net.nz> 452007-12-28 Nick Roberts <nickrob@snap.net.nz>
23 46