diff options
author | Chong Yidong <cyd@gnu.org> | 2012-04-27 22:16:02 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-04-27 22:16:02 +0800 |
commit | d1d2e2e86be31c26bfa158b8c15c1aa5e2e776a2 (patch) | |
tree | 031240ec28b773e5fe5f298d83e6fd6ad79c7216 /lisp/vc/diff.el | |
parent | 0cd38783c0395c0c070a578cd73cd85211791923 (diff) | |
download | emacs-d1d2e2e86be31c26bfa158b8c15c1aa5e2e776a2.tar.gz |
* lisp/vc/diff.el (diff-sentinel): Go to bob.
Fixes: debbugs:10259
Diffstat (limited to 'lisp/vc/diff.el')
-rw-r--r-- | lisp/vc/diff.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/vc/diff.el b/lisp/vc/diff.el index 2eefdee1836..6cfee52cbb5 100644 --- a/lisp/vc/diff.el +++ b/lisp/vc/diff.el @@ -67,6 +67,7 @@ delete the temporary files so named." (if old-temp-file (delete-file old-temp-file)) (if new-temp-file (delete-file new-temp-file)) (diff-setup-whitespace) + (goto-char (point-min)) (save-excursion (goto-char (point-max)) (let ((inhibit-read-only t)) |