diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c index 24a832ff3ee..c24c70c0899 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -9471,7 +9471,7 @@ not fully specified.) */) | |||
| 9471 | return code_convert_region (start, end, coding_system, destination, 1, 0); | 9471 | return code_convert_region (start, end, coding_system, destination, 1, 0); |
| 9472 | } | 9472 | } |
| 9473 | 9473 | ||
| 9474 | /* Non-zero if STR contains only characterss in the 0..127 range. | 9474 | /* Non-zero if STR contains only characters in the 0..127 range. |
| 9475 | Positive if STR includes characters that don't need EOL conversion | 9475 | Positive if STR includes characters that don't need EOL conversion |
| 9476 | on decoding, negative otherwise. */ | 9476 | on decoding, negative otherwise. */ |
| 9477 | static int | 9477 | static int |
| @@ -9523,7 +9523,7 @@ code_convert_string (Lisp_Object string, Lisp_Object coding_system, | |||
| 9523 | if (EQ (dst_object, Qt)) | 9523 | if (EQ (dst_object, Qt)) |
| 9524 | { | 9524 | { |
| 9525 | /* Fast path for ASCII-only input and an ASCII-compatible coding: | 9525 | /* Fast path for ASCII-only input and an ASCII-compatible coding: |
| 9526 | act as identity. */ | 9526 | act as identity if no EOL conversion is neede. */ |
| 9527 | int ascii_p; | 9527 | int ascii_p; |
| 9528 | Lisp_Object attrs = CODING_ID_ATTRS (coding.id); | 9528 | Lisp_Object attrs = CODING_ID_ATTRS (coding.id); |
| 9529 | if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs)) | 9529 | if (! NILP (CODING_ATTR_ASCII_COMPAT (attrs)) |