From 2b89a53fc49171ca0cbbfe66c71e629840417655 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 13 Apr 2006 04:25:44 +0000 Subject: [PATCH] (setup_coding_system): Fix previous change. --- src/ChangeLog | 4 ++++ src/coding.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 71b7dde96b..e2da810a4f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-04-13 Kenichi Handa + + * coding.c (setup_coding_system): Fix previous change. + 2006-04-13 Nick Roberts * xdisp.c (note_mouse_highlight): Add help echo for dragging vertical diff --git a/src/coding.c b/src/coding.c index 3ffc976079..51e76e51b7 100644 --- a/src/coding.c +++ b/src/coding.c @@ -3621,7 +3621,7 @@ setup_coding_system (coding_system, coding) = CODING_REQUIRE_DECODING_MASK | CODING_REQUIRE_ENCODING_MASK; } else - coding->eol_type = system_eol_type; + coding->eol_type = CODING_EOL_LF; coding_type = XVECTOR (coding_spec)->contents[0]; /* Try short cut. */ -- 2.39.2