aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2013-03-20 16:58:20 +0900
committerKenichi Handa2013-03-20 16:58:20 +0900
commitc0a17406acd4b9db561ba99f8a02bf5461130e82 (patch)
tree79e761d85b336f8a7152f6d0515ec4ee47fa2541
parent50c3a20bac9ebccc003fb899f575e73d0e04216a (diff)
downloademacs-c0a17406acd4b9db561ba99f8a02bf5461130e82.tar.gz
emacs-c0a17406acd4b9db561ba99f8a02bf5461130e82.zip
coding.c (syms_of_coding): Initialize disable_ascii_optimization 1.
-rw-r--r--src/ChangeLog6
-rw-r--r--src/coding.c2
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 @@
12013-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
12013-03-18 Dmitry Antipov <dmantipov@yandex.ru> 72013-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.
10879Internal use only. Removed after the experimental optimizer gets stable. */); 10879Internal 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.