aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/vc-hg.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7f0fe4f3c4d..c99446f1e4a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12008-04-28 Sam Steingold <sds@gnu.org>
2
3 * vc-hg.el (vc-hg-rename-file): Fix argument order.
4
12008-04-28 Bastien Guerry <bzg@altern.org> 52008-04-28 Bastien Guerry <bzg@altern.org>
2 6
3 * whitespace.el (whitespace-trailing): Fix typo. 7 * whitespace.el (whitespace-trailing): Fix typo.
diff --git a/lisp/vc-hg.el b/lisp/vc-hg.el
index c9cfc8eff61..7755e92dbc4 100644
--- a/lisp/vc-hg.el
+++ b/lisp/vc-hg.el
@@ -390,7 +390,7 @@ Optional arg REVISION is a revision to annotate from."
390;; Modelled after the similar function in vc-bzr.el 390;; Modelled after the similar function in vc-bzr.el
391(defun vc-hg-rename-file (old new) 391(defun vc-hg-rename-file (old new)
392 "Rename file from OLD to NEW using `hg mv'." 392 "Rename file from OLD to NEW using `hg mv'."
393 (vc-hg-command nil 0 new old "mv")) 393 (vc-hg-command nil 0 new "mv" old))
394 394
395(defun vc-hg-register (files &optional rev comment) 395(defun vc-hg-register (files &optional rev comment)
396 "Register FILES under hg. 396 "Register FILES under hg.