diff options
| author | Kenichi Handa | 1997-08-06 01:09:16 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-08-06 01:09:16 +0000 |
| commit | 85a02ca454274f5db1d9755ff0f91c10d0057ee8 (patch) | |
| tree | 4e97f1f27b305004136c617109b12c4382ed573d /src | |
| parent | 595b2334eea1cec16874cfc04dab4e5062b91337 (diff) | |
| download | emacs-85a02ca454274f5db1d9755ff0f91c10d0057ee8.tar.gz emacs-85a02ca454274f5db1d9755ff0f91c10d0057ee8.zip | |
(detect_eol_type): Fix previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/coding.c | 2 |
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 |