1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-17 03:10:58 -08:00

Fix bug#16286 by the different way than 2014-01-26T00:32:30Z!eggert@cs.ucla.edu to preserve the code detection behavior of 24.3.

This commit is contained in:
Kenichi Handa 2014-01-29 22:21:25 +09:00
parent 4988180d71
commit 52840a9cc8
4 changed files with 20 additions and 4 deletions

View file

@ -468,7 +468,9 @@ struct coding_system
the eol format. */
ptrdiff_t head_ascii;
ptrdiff_t detected_utf8_chars;
/* How many bytes/chars at the source are detected as valid utf-8
sequence. Set by detect_coding_utf_8. */
ptrdiff_t detected_utf8_bytes, detected_utf8_chars;
/* Used internally in coding.c. See the comment of detect_ascii. */
int eol_seen;