1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-04 14:40:54 -08:00

(byte-compile-from-buffer): Make the output buffer multibyte.

This commit is contained in:
Richard M. Stallman 1998-08-05 17:59:36 +00:00
parent 57522629c8
commit 08b59cd333

View file

@ -9,7 +9,7 @@
;;; This version incorporates changes up to version 2.10 of the
;;; Zawinski-Furuseth compiler.
(defconst byte-compile-version "$Revision: 2.47 $")
(defconst byte-compile-version "$Revision: 2.48 $")
;; This file is part of GNU Emacs.
@ -1406,6 +1406,7 @@ With argument, insert value in current buffer after the form."
(save-excursion
(setq outbuffer
(set-buffer (get-buffer-create " *Compiler Output*")))
(set-buffer-multibyte t)
(erase-buffer)
;; (emacs-lisp-mode)
(setq case-fold-search nil)