diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-04-03 21:06:38 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-04-03 21:06:38 +0000 |
commit | 249ac14bec7bdcb12abadde0ee6c553595add615 (patch) | |
tree | 6293cecd69a2a216866b0f23658e6170529145a7 /lisp/mail/emacsbug.el | |
parent | e934739e6253aa592cf74f705efc70df9a66cf6d (diff) | |
download | emacs-249ac14bec7bdcb12abadde0ee6c553595add615.tar.gz |
(report-emacs-bug): Use set-buffer-multibyte.
Diffstat (limited to 'lisp/mail/emacsbug.el')
-rw-r--r-- | lisp/mail/emacsbug.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index de4e1f4c24e..d3168c68795 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -155,7 +155,7 @@ Type SPC to scroll through this section and its subsections."))) (make-local-variable 'mail-send-hook) (add-hook 'mail-send-hook 'report-emacs-bug-hook) ;; Discourage users to write non-English text. - (setq enable-multibyte-characters nil) + (set-buffer-multibyte nil) (save-excursion (goto-char (point-max)) (skip-chars-backward " \t\n") |