diff options
author | Nick Roberts <nickrob@snap.net.nz> | 2009-12-30 19:53:47 +1300 |
---|---|---|
committer | Nick Roberts <nickrob@snap.net.nz> | 2009-12-30 19:53:47 +1300 |
commit | ac4a95293677222db75f7daa533f7ab3de51787c (patch) | |
tree | 10a83e01bd79256b46c40ee58059788a24afd89f /lisp | |
parent | a9c8a2cdf87cac01ea79da989059846ea86a9b72 (diff) | |
download | emacs-ac4a95293677222db75f7daa533f7ab3de51787c.tar.gz emacs-ac4a95293677222db75f7daa533f7ab3de51787c.tar.bz2 emacs-ac4a95293677222db75f7daa533f7ab3de51787c.zip |
(vc-hg-working-revision): Tweak previous change.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/vc-hg.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc-hg.el b/lisp/vc-hg.el index 9dc1d380b0a..34a7806b8a8 100644 --- a/lisp/vc-hg.el +++ b/lisp/vc-hg.el @@ -209,11 +209,11 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches." ;; Ignore all errors. (process-file "hg" nil t nil - "parent" "--template" "\"{rev}\"" (file-relative-name file))) + "parent" "--template" "{rev}" (file-relative-name file))) ;; Some problem happened. E.g. We can't find an `hg' ;; executable. (error nil))))))) - (when (eq 0 status) (read out)))) + (when (eq 0 status) out))) ;;; History functions |