aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorKenichi Handa1997-08-06 01:09:16 +0000
committerKenichi Handa1997-08-06 01:09:16 +0000
commit85a02ca454274f5db1d9755ff0f91c10d0057ee8 (patch)
tree4e97f1f27b305004136c617109b12c4382ed573d /src/coding.c
parent595b2334eea1cec16874cfc04dab4e5062b91337 (diff)
downloademacs-85a02ca454274f5db1d9755ff0f91c10d0057ee8.tar.gz
emacs-85a02ca454274f5db1d9755ff0f91c10d0057ee8.zip
(detect_eol_type): Fix previous change.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index c3f4e19d615..7d5512d2e09 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -2739,7 +2739,7 @@ detect_eol_type (src, src_bytes)
2739 } 2739 }
2740 } 2740 }
2741 2741
2742 return (total ? eol_type : CODING_EOL_UNDECIDED); 2742 return eol_type;
2743} 2743}
2744 2744
2745/* Detect how end-of-line of a text of length SRC_BYTES pointed by SRC 2745/* Detect how end-of-line of a text of length SRC_BYTES pointed by SRC