diff options
| author | Dan Nicolaescu | 2008-01-07 03:07:36 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-01-07 03:07:36 +0000 |
| commit | 45286831a5ad240a151ab4553d71ab6b3fdcd783 (patch) | |
| tree | 7698b4ee39cca683aadc635c24acbfa9a0092724 /lisp | |
| parent | 409cc4a3ea9e7461572a04f021ff3993e9a516f6 (diff) | |
| download | emacs-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/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/vc-hg.el | 2 |
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 @@ | |||
| 1 | 2008-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 | |||
| 1 | 2008-01-07 Glenn Morris <rgm@gnu.org> | 6 | 2008-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)) |