diff options
| author | Eli Zaretskii | 2013-03-09 20:09:33 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2013-03-09 20:09:33 +0200 |
| commit | bc989a58e2412c152c2aef9d35ca103979edebd5 (patch) | |
| tree | 6eab967b4842546cc31dd97c9a376b42f0e07ab1 /src/coding.c | |
| parent | 74dd4abc5fb5ba21cdb3715b1d1d68bf27618b60 (diff) | |
| download | emacs-bc989a58e2412c152c2aef9d35ca103979edebd5.tar.gz emacs-bc989a58e2412c152c2aef9d35ca103979edebd5.zip | |
coding.c (to_unicode): Fix a typo in a comment.
Diffstat (limited to 'src/coding.c')
| -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 32da72ab626..78e6cff7078 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -7970,7 +7970,7 @@ wchar_t * | |||
| 7970 | to_unicode (Lisp_Object str, Lisp_Object *buf) | 7970 | to_unicode (Lisp_Object str, Lisp_Object *buf) |
| 7971 | { | 7971 | { |
| 7972 | *buf = code_convert_string_norecord (str, Qutf_16le, 1); | 7972 | *buf = code_convert_string_norecord (str, Qutf_16le, 1); |
| 7973 | /* We need to make a another copy (in addition to the one made by | 7973 | /* We need to make another copy (in addition to the one made by |
| 7974 | code_convert_string_norecord) to ensure that the final string is | 7974 | code_convert_string_norecord) to ensure that the final string is |
| 7975 | _doubly_ zero terminated --- that is, that the string is | 7975 | _doubly_ zero terminated --- that is, that the string is |
| 7976 | terminated by two zero bytes and one utf-16le null character. | 7976 | terminated by two zero bytes and one utf-16le null character. |