summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/emacsbug.el2
2 files changed, 5 insertions, 2 deletions
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 <eliz@is.elta.co.il>
+
+ * mail/emacsbug.el (report-emacs-bug): Don't switch the buffer to
+ unibyte. Suggested by Kenichi Handa <handa@etl.go.jp>.
+
2001-05-10 Gerd Moellmann <gerd@gnu.org>
* 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)))