diff options
| author | Kenichi Handa | 2013-03-20 16:58:20 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2013-03-20 16:58:20 +0900 |
| commit | c0a17406acd4b9db561ba99f8a02bf5461130e82 (patch) | |
| tree | 79e761d85b336f8a7152f6d0515ec4ee47fa2541 | |
| parent | 50c3a20bac9ebccc003fb899f575e73d0e04216a (diff) | |
| download | emacs-c0a17406acd4b9db561ba99f8a02bf5461130e82.tar.gz emacs-c0a17406acd4b9db561ba99f8a02bf5461130e82.zip | |
coding.c (syms_of_coding): Initialize disable_ascii_optimization 1.
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/coding.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1814a699b4b..6de0212109a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2013-03-20 Kenichi Handa <handa@gnu.org> | ||
| 2 | |||
| 3 | * coding.c (syms_of_coding): Initialize disable_ascii_optimization | ||
| 4 | to 1 (temporary workaround until a bug related to ASCII | ||
| 5 | optimization is fixed). | ||
| 6 | |||
| 1 | 2013-03-18 Dmitry Antipov <dmantipov@yandex.ru> | 7 | 2013-03-18 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 8 | ||
| 3 | * window.c (window_resize_check, window_resize_apply) | 9 | * window.c (window_resize_check, window_resize_apply) |
diff --git a/src/coding.c b/src/coding.c index 6cfcec905a1..a5b07019388 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -10877,7 +10877,7 @@ decode text as usual. */); | |||
| 10877 | DEFVAR_BOOL ("disable-ascii-optimization", disable_ascii_optimization, | 10877 | DEFVAR_BOOL ("disable-ascii-optimization", disable_ascii_optimization, |
| 10878 | doc: /* If non-nil, Emacs does not optimize code decoder for ASCII files. | 10878 | doc: /* If non-nil, Emacs does not optimize code decoder for ASCII files. |
| 10879 | Internal use only. Removed after the experimental optimizer gets stable. */); | 10879 | Internal use only. Removed after the experimental optimizer gets stable. */); |
| 10880 | disable_ascii_optimization = 0; | 10880 | disable_ascii_optimization = 1; |
| 10881 | 10881 | ||
| 10882 | DEFVAR_LISP ("translation-table-for-input", Vtranslation_table_for_input, | 10882 | DEFVAR_LISP ("translation-table-for-input", Vtranslation_table_for_input, |
| 10883 | doc: /* Char table for translating self-inserting characters. | 10883 | doc: /* Char table for translating self-inserting characters. |