From: Eli Zaretskii Date: Thu, 10 May 2001 15:47:29 +0000 (+0000) Subject: (report-emacs-bug): Don't switch the buffer to X-Git-Tag: emacs-pretest-21.0.104~548 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cbeed4a8abc9c9d5ad01d2463cfb991f8061823e;p=emacs.git (report-emacs-bug): Don't switch the buffer to unibyte. Suggested by Kenichi Handa . --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d711f58ec7a..ace76ab1d36 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2001-05-10 Eli Zaretskii + + * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to + unibyte. Suggested by Kenichi Handa . + 2001-05-10 Gerd Moellmann * net/browse-url.el (browse-url-filename-alist): Allow UNC file diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index 2d09083cc61..0b4cfeaaaa9 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -89,8 +89,6 @@ Prompts for bug subject. Leaves you in a mail buffer." (forward-line 1) (let ((signature (buffer-substring (point) (point-max)))) - ;; Discourage users to write non-English text. - (set-buffer-multibyte nil) (delete-region (point) (point-max)) (insert signature) (backward-char (length signature)))