]> git.eshelyaron.com Git - emacs.git/commitdiff
coding.c (syms_of_coding): Initialize disable_ascii_optimization 1.
authorKenichi Handa <handa@gnu.org>
Wed, 20 Mar 2013 07:58:20 +0000 (16:58 +0900)
committerKenichi Handa <handa@gnu.org>
Wed, 20 Mar 2013 07:58:20 +0000 (16:58 +0900)
src/ChangeLog
src/coding.c

index 1814a699b4be95d283f9decfdbcb5d963e88063f..6de0212109a8230bc7fe09bde6b6e2300a81b42b 100644 (file)
@@ -1,3 +1,9 @@
+2013-03-20  Kenichi Handa  <handa@gnu.org>
+
+       * coding.c (syms_of_coding): Initialize disable_ascii_optimization
+       to 1 (temporary workaround until a bug related to ASCII
+       optimization is fixed).
+
 2013-03-18  Dmitry Antipov  <dmantipov@yandex.ru>
 
        * window.c (window_resize_check, window_resize_apply)
index 6cfcec905a193aedf798510d4827be4d6b712eef..a5b07019388d91ccf285aac33a6c4289a0a9e01a 100644 (file)
@@ -10877,7 +10877,7 @@ decode text as usual.  */);
   DEFVAR_BOOL ("disable-ascii-optimization", disable_ascii_optimization,
               doc: /* If non-nil, Emacs does not optimize code decoder for ASCII files.
 Internal use only.  Removed after the experimental optimizer gets stable. */);
-  disable_ascii_optimization = 0;
+  disable_ascii_optimization = 1;
 
   DEFVAR_LISP ("translation-table-for-input", Vtranslation_table_for_input,
               doc: /* Char table for translating self-inserting characters.