diff options
| author | Karl Heuer | 1997-02-20 05:41:01 +0000 |
|---|---|---|
| committer | Karl Heuer | 1997-02-20 05:41:01 +0000 |
| commit | 9a06295dcf86dc9e1171020e92406fbcd2f9b632 (patch) | |
| tree | e8171a3ba9bae4287f54bff81c9fa588e98e01be | |
| parent | b8575ac32e3e8d8cffc1753017822c6423044707 (diff) | |
| download | emacs-9a06295dcf86dc9e1171020e92406fbcd2f9b632.tar.gz emacs-9a06295dcf86dc9e1171020e92406fbcd2f9b632.zip | |
(debugger-mode): Disable multibyte character handling
in Debugger mode.
| -rw-r--r-- | lisp/emacs-lisp/debug.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el index fb2a1324331..202821c87ed 100644 --- a/lisp/emacs-lisp/debug.el +++ b/lisp/emacs-lisp/debug.el | |||
| @@ -386,6 +386,8 @@ Complete list of commands: | |||
| 386 | (setq mode-name "Debugger") | 386 | (setq mode-name "Debugger") |
| 387 | (setq truncate-lines t) | 387 | (setq truncate-lines t) |
| 388 | (set-syntax-table emacs-lisp-mode-syntax-table) | 388 | (set-syntax-table emacs-lisp-mode-syntax-table) |
| 389 | ;; Since we must handle bytecode... | ||
| 390 | (setq enable-multibyte-characters nil) | ||
| 389 | (use-local-map debugger-mode-map)) | 391 | (use-local-map debugger-mode-map)) |
| 390 | 392 | ||
| 391 | ;;;###autoload | 393 | ;;;###autoload |