diff options
| author | Paul Eggert | 2020-04-05 10:45:09 -0700 |
|---|---|---|
| committer | Paul Eggert | 2020-04-05 10:45:44 -0700 |
| commit | 24c3fa96077a5fec6d8ba65d7c49ff1a731be32f (patch) | |
| tree | d25702a0e09aa98f16e7f00fc49732ca4a582ba3 /src/coding.c | |
| parent | 507f26d532aaf9db4622c42eec1f89466fb5c724 (diff) | |
| download | emacs-24c3fa96077a5fec6d8ba65d7c49ff1a731be32f.tar.gz emacs-24c3fa96077a5fec6d8ba65d7c49ff1a731be32f.zip | |
* src/coding.c (code_convert_string): Fix type mismatches.
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 97a6eb949a8..49c1e625d57 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -9524,8 +9524,8 @@ code_convert_string (Lisp_Object string, Lisp_Object coding_system, | |||
| 9524 | return (nocopy | 9524 | return (nocopy |
| 9525 | ? string | 9525 | ? string |
| 9526 | : (encodep | 9526 | : (encodep |
| 9527 | ? make_unibyte_string (SDATA (string), bytes) | 9527 | ? make_unibyte_string (SSDATA (string), bytes) |
| 9528 | : make_multibyte_string (SDATA (string), bytes, bytes))); | 9528 | : make_multibyte_string (SSDATA (string), bytes, bytes))); |
| 9529 | } | 9529 | } |
| 9530 | else if (BUFFERP (dst_object)) | 9530 | else if (BUFFERP (dst_object)) |
| 9531 | { | 9531 | { |