comparison contrib/mercurial.el @ 955:307ca8ca234f

Remove -C alias for --cwd
author mpm@selenic.com
date Fri, 19 Aug 2005 16:51:44 -0800
parents ffb0665028f0
children d845a1f174bb
comparison
equal deleted inserted replaced
954:f179a3a4af3c 955:307ca8ca234f
568 (defun hg-status (path) 568 (defun hg-status (path)
569 (interactive (list (hg-read-file-name " for status" (hg-root)))) 569 (interactive (list (hg-read-file-name " for status" (hg-root))))
570 (let ((root (hg-root))) 570 (let ((root (hg-root)))
571 (hg-view-output (hg-output-buffer-name) 571 (hg-view-output (hg-output-buffer-name)
572 (apply 'call-process (hg-binary) nil t nil 572 (apply 'call-process (hg-binary) nil t nil
573 (list "-C" root "status" path))))) 573 (list "--cwd" root "status" path)))))
574 574
575 (defun hg-undo () 575 (defun hg-undo ()
576 (interactive) 576 (interactive)
577 (error "not implemented")) 577 (error "not implemented"))
578 578