aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1998-08-05 17:59:36 +0000
committerRichard M. Stallman <[email protected]>1998-08-05 17:59:36 +0000
commit08b59cd3332c5531f614b6c0394cdab001ba047d (patch)
treeb5d4b46654d343e101cd7cad9cd1967f4b3d3b18 /lisp/emacs-lisp
parent57522629c8331e05c05333fd2f97956f8f546d29 (diff)
(byte-compile-from-buffer): Make the output buffer multibyte.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/bytecomp.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index d8fbd25aeb..9618deddfa 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)