aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2009-03-21 15:39:10 +0000
committerDan Nicolaescu2009-03-21 15:39:10 +0000
commitbd924903e91949cf43df531da26b11c1bcd4122f (patch)
treeb965cf21b65db385e8f723a19971963eef7f77d2
parentce343c43c835b98abe2b4f43b8ebbab624b9dcb3 (diff)
downloademacs-bd924903e91949cf43df531da26b11c1bcd4122f.tar.gz
emacs-bd924903e91949cf43df531da26b11c1bcd4122f.zip
(Todo): Add note on simplifying vc-register.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/vc.el5
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 014ed32c26f..7833246d5e8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12009-03-21 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * vc.el (Todo): Add note on simplifying vc-register.
4
12009-03-21 Eli Zaretskii <eliz@gnu.org> 52009-03-21 Eli Zaretskii <eliz@gnu.org>
2 6
3 * eshell/em-ls.el (eshell-ls-dir): Call 7 * eshell/em-ls.el (eshell-ls-dir): Call
diff --git a/lisp/vc.el b/lisp/vc.el
index e785f3fb9ca..6d1242b7640 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -600,6 +600,11 @@
600;; the two branches. Or you locally add file FOO and then pull a 600;; the two branches. Or you locally add file FOO and then pull a
601;; change that also adds a new file FOO, ... 601;; change that also adds a new file FOO, ...
602;; 602;;
603;; - The use of vc-start-logentry in vc-register should be removed.
604;; It's a remnant from old times when vc-register had an opportunity
605;; to provide a message linked to the file's addition, but nowadays
606;; it's just extra baggage that makes the code less readable.
607;;
603;; - make it easier to write logs. Maybe C-x 4 a should add to the log 608;; - make it easier to write logs. Maybe C-x 4 a should add to the log
604;; buffer, if one is present, instead of adding to the ChangeLog. 609;; buffer, if one is present, instead of adding to the ChangeLog.
605;; 610;;