##// END OF EJS Templates
mercurial.el: fix calls to goto-char.
Bryan O'Sullivan -
r2998:e1762867 default
parent child Browse files
Show More
@@ -740,7 +740,7 b' With a prefix argument, prompt for the p'
740 740 (hg-view-output (hg-output-buffer-name)
741 741 (apply 'call-process (hg-binary) nil t nil (list "add" path))
742 742 (hg-fix-paths)
743 (goto-char 0)
743 (goto-char (point-min))
744 744 (cd (hg-root path)))
745 745 (when update
746 746 (unless vc-make-backup-files
@@ -980,7 +980,7 b' With a prefix argument, prompt for the p'
980 980 (apply 'call-process (hg-binary) nil t nil (list "forget" path))
981 981 ;; "hg forget" shows pathes relative NOT TO ROOT BUT TO REPOSITORY
982 982 (hg-fix-paths)
983 (goto-char 0)
983 (goto-char (point-min))
984 984 (cd (hg-root path)))
985 985 (when update
986 986 (with-current-buffer buf
General Comments 0
You need to be logged in to leave comments. Login now