From bad98418bf75efc6dd8ac393157413bc6ef769b4 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 18 Mar 2013 21:41:53 -0700 Subject: Spelling fixes. --- src/coding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/coding.c') diff --git a/src/coding.c b/src/coding.c index 6cfcec905a1..8a09cd67859 100644 --- a/src/coding.c +++ b/src/coding.c @@ -6075,7 +6075,7 @@ complement_process_encoding_system (Lisp_Object coding_system) static Lisp_Object adjust_coding_eol_type (struct coding_system *coding, int eol_seen); -/* Return 1 if all the source bytes are ASCII, and return 0 otherwize. +/* Return true iff all the source bytes are ASCII. By side effects, set coding->head_ascii and coding->eol_seen. The value of coding->eol_seen is "logical or" of EOL_SEEN_LF, EOL_SEEN_CR, and EOL_SEEN_CRLF, but the value is reliable only when -- cgit v1.2.1 From c0a17406acd4b9db561ba99f8a02bf5461130e82 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 20 Mar 2013 16:58:20 +0900 Subject: coding.c (syms_of_coding): Initialize disable_ascii_optimization 1. --- src/coding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/coding.c') 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. */); 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. -- cgit v1.2.1