From 08b59cd3332c5531f614b6c0394cdab001ba047d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 5 Aug 1998 17:59:36 +0000 Subject: [PATCH] (byte-compile-from-buffer): Make the output buffer multibyte. --- lisp/emacs-lisp/bytecomp.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index d8fbd25aeb4..9618deddfa3 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -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) -- 2.39.2