diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-05-07 06:31:31 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-05-07 06:31:31 +0000 |
commit | 518adca24d8cde9589c59400353554ec5727504c (patch) | |
tree | a9f564ae6a0ee2e08102a9aae5accb6fb9af7666 /lisp/mail/emacsbug.el | |
parent | 613a39b91b664b7b8a4c7982362769bfb961068f (diff) | |
download | emacs-518adca24d8cde9589c59400353554ec5727504c.tar.gz |
(report-emacs-bug): After reinserting
the signature, leave point before it.
Diffstat (limited to 'lisp/mail/emacsbug.el')
-rw-r--r-- | lisp/mail/emacsbug.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index d9e0742ce75..7773082814f 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -91,7 +91,8 @@ Prompts for bug subject. Leaves you in a mail buffer." ;; 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") |