diff options
| author | Kenichi Handa | 2013-03-22 00:18:44 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2013-03-22 00:18:44 +0900 |
| commit | 8bc369d4a23a3a8040d77e3ce89a7f63b1ecff97 (patch) | |
| tree | 12f361cf86c9c79a683332368240fec7c5861919 /src/coding.c | |
| parent | 47077837aff40030430e3d1d0522fee5db62ee1e (diff) | |
| download | emacs-8bc369d4a23a3a8040d77e3ce89a7f63b1ecff97.tar.gz emacs-8bc369d4a23a3a8040d77e3ce89a7f63b1ecff97.zip | |
Fix a bug introduced by 2013-03-15T16:06:12Z!handa@gnu.org.
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 cb81375a043..8a09cd67859 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 = 1; | 10880 | disable_ascii_optimization = 0; |
| 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. |