diff options
| author | Richard M. Stallman | 1998-08-05 17:59:36 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-08-05 17:59:36 +0000 |
| commit | 08b59cd3332c5531f614b6c0394cdab001ba047d (patch) | |
| tree | b5d4b46654d343e101cd7cad9cd1967f4b3d3b18 | |
| parent | 57522629c8331e05c05333fd2f97956f8f546d29 (diff) | |
| download | emacs-08b59cd3332c5531f614b6c0394cdab001ba047d.tar.gz emacs-08b59cd3332c5531f614b6c0394cdab001ba047d.zip | |
(byte-compile-from-buffer): Make the output buffer multibyte.
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
1 files changed, 2 insertions, 1 deletions
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 @@ | |||
| 9 | 9 | ||
| 10 | ;;; This version incorporates changes up to version 2.10 of the | 10 | ;;; This version incorporates changes up to version 2.10 of the |
| 11 | ;;; Zawinski-Furuseth compiler. | 11 | ;;; Zawinski-Furuseth compiler. |
| 12 | (defconst byte-compile-version "$Revision: 2.47 $") | 12 | (defconst byte-compile-version "$Revision: 2.48 $") |
| 13 | 13 | ||
| 14 | ;; This file is part of GNU Emacs. | 14 | ;; This file is part of GNU Emacs. |
| 15 | 15 | ||
| @@ -1406,6 +1406,7 @@ With argument, insert value in current buffer after the form." | |||
| 1406 | (save-excursion | 1406 | (save-excursion |
| 1407 | (setq outbuffer | 1407 | (setq outbuffer |
| 1408 | (set-buffer (get-buffer-create " *Compiler Output*"))) | 1408 | (set-buffer (get-buffer-create " *Compiler Output*"))) |
| 1409 | (set-buffer-multibyte t) | ||
| 1409 | (erase-buffer) | 1410 | (erase-buffer) |
| 1410 | ;; (emacs-lisp-mode) | 1411 | ;; (emacs-lisp-mode) |
| 1411 | (setq case-fold-search nil) | 1412 | (setq case-fold-search nil) |