aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorEli Zaretskii <[email protected]>2013-03-09 20:09:33 +0200
committerEli Zaretskii <[email protected]>2013-03-09 20:09:33 +0200
commitbc989a58e2412c152c2aef9d35ca103979edebd5 (patch)
tree6eab967b4842546cc31dd97c9a376b42f0e07ab1 /src/coding.c
parent74dd4abc5fb5ba21cdb3715b1d1d68bf27618b60 (diff)
coding.c (to_unicode): Fix a typo in a comment.
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 32da72ab62..78e6cff707 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -7970,7 +7970,7 @@ wchar_t *
to_unicode (Lisp_Object str, Lisp_Object *buf)
{
*buf = code_convert_string_norecord (str, Qutf_16le, 1);
- /* We need to make a another copy (in addition to the one made by
+ /* We need to make another copy (in addition to the one made by
code_convert_string_norecord) to ensure that the final string is
_doubly_ zero terminated --- that is, that the string is
terminated by two zero bytes and one utf-16le null character.