aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorDan Nicolaescu2008-01-07 03:07:36 +0000
committerDan Nicolaescu2008-01-07 03:07:36 +0000
commit45286831a5ad240a151ab4553d71ab6b3fdcd783 (patch)
tree7698b4ee39cca683aadc635c24acbfa9a0092724 /lisp
parent409cc4a3ea9e7461572a04f021ff3993e9a516f6 (diff)
downloademacs-45286831a5ad240a151ab4553d71ab6b3fdcd783.tar.gz
emacs-45286831a5ad240a151ab4553d71ab6b3fdcd783.zip
(vc-hg-dir-state): Pass the dir argument to
vc-hg-command.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/vc-hg.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a67b82e6cd7..f98b68709fa 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-01-07 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * vc-hg.el (vc-hg-dir-state): Pass the dir argument to
4 vc-hg-command.
5
12008-01-07 Glenn Morris <rgm@gnu.org> 62008-01-07 Glenn Morris <rgm@gnu.org>
2 7
3 * calc/calc-help.el (calc-full-help): Use emacs-copyright. 8 * calc/calc-help.el (calc-full-help): Use emacs-copyright.
diff --git a/lisp/vc-hg.el b/lisp/vc-hg.el
index c97a07220be..ac4f333f749 100644
--- a/lisp/vc-hg.el
+++ b/lisp/vc-hg.el
@@ -170,7 +170,7 @@
170 170
171(defun vc-hg-dir-state (dir) 171(defun vc-hg-dir-state (dir)
172 (with-temp-buffer 172 (with-temp-buffer
173 (vc-hg-command (current-buffer) nil nil "status") 173 (vc-hg-command (current-buffer) nil dir "status")
174 (goto-char (point-min)) 174 (goto-char (point-min))
175 (let ((status-char nil) 175 (let ((status-char nil)
176 (file nil)) 176 (file nil))