From: Richard M. Stallman Date: Wed, 5 Aug 1998 17:59:36 +0000 (+0000) Subject: (byte-compile-from-buffer): Make the output buffer multibyte. X-Git-Tag: emacs-20.3~169 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=08b59cd3332c5531f614b6c0394cdab001ba047d;p=emacs.git (byte-compile-from-buffer): Make the output buffer multibyte. --- 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)