From: Lars Ingebrigtsen <larsi@gnus.org>
Date: Fri, 26 Aug 2022 10:30:30 +0000 (+0200)
Subject: Delete blank lines at the start of the cited text in message-indent-citation
X-Git-Tag: emacs-29.0.90~1893^2~19
X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=762a37b5e52852b09324656c884298e34a452273;p=emacs.git

Delete blank lines at the start of the cited text in message-indent-citation

* lisp/gnus/message.el (message-indent-citation): Fix thinko in
the fix for the previous thinko.
---

diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index b98e623db80..49a04f601f8 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -3928,8 +3928,7 @@ However, if `message-yank-prefix' is non-nil, insert that prefix on each line."
 	(if all-removed
 	    (goto-char start)
 	  (forward-line 1))))
-    ;; Delete blank lines at the start of the buffer.
-    (goto-char (point-min))
+    ;; Delete blank lines at the start of the cited text.
     (while (and (eolp) (not (eobp)))
       (delete-line))
     ;; Delete blank lines at the end of the buffer.