From 6bebd41eec763541c2d2d9de762f2b6c97c7a450 Mon Sep 17 00:00:00 2001 From: Wanderson Ferreira Date: Sun, 10 Oct 2021 17:22:28 -0300 Subject: [PATCH] start at the beginning of the buffer --- github-review.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/github-review.el b/github-review.el index 5a9c9e3..f70356d 100644 --- a/github-review.el +++ b/github-review.el @@ -329,7 +329,8 @@ ACC is an alist accumulating parsing state." (erase-buffer) (insert diff) (save-buffer) - (github-review-mode))) + (github-review-mode) + (goto-char (point-min)))) (defun github-review-parsed-review-from-current-buffer () "Return a code review given the current buffer containing a diff."