# HG changeset patch # User Richard M. Stallman # Date 894522691 0 # Node ID 42b308d86213e76b1e38207c92e3003f48c81626 # Parent f3d29552e3936ee2530ab428b2187c6e039f03b8 (report-emacs-bug): After reinserting the signature, leave point before it. diff -r f3d29552e393 -r 42b308d86213 lisp/mail/emacsbug.el --- a/lisp/mail/emacsbug.el Thu May 07 05:37:59 1998 +0000 +++ b/lisp/mail/emacsbug.el Thu May 07 06:31:31 1998 +0000 @@ -91,7 +91,8 @@ ;; Discourage users to write non-English text. (set-buffer-multibyte nil) (delete-region (point) (point-max)) - (insert signature)) + (insert signature) + (backward-char (length signature))) (unless report-emacs-bug-no-explanations ;; Insert warnings for novice users. (insert "This bug report will be sent to the Free Software Foundation,\n")