]> git.eshelyaron.com Git - emacs.git/commitdiff
(byte-compile-from-buffer): Make the output buffer multibyte.
authorRichard M. Stallman <rms@gnu.org>
Wed, 5 Aug 1998 17:59:36 +0000 (17:59 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 5 Aug 1998 17:59:36 +0000 (17:59 +0000)
lisp/emacs-lisp/bytecomp.el

index d8fbd25aeb4700477cb98bf38d6a09f154c973e1..9618deddfa30dc6b895a64a053d5cde3ef29312e 100644 (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)