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 /src/coding.c | |
| parent | 50c3a20bac9ebccc003fb899f575e73d0e04216a (diff) | |
| download | emacs-c0a17406acd4b9db561ba99f8a02bf5461130e82.tar.gz emacs-c0a17406acd4b9db561ba99f8a02bf5461130e82.zip | |
coding.c (syms_of_coding): Initialize disable_ascii_optimization 1.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. |