From: Eli Zaretskii Date: Sat, 9 Mar 2013 18:09:33 +0000 (+0200) Subject: coding.c (to_unicode): Fix a typo in a comment. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2026^2~585^2~7 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bc989a58e2412c152c2aef9d35ca103979edebd5;p=emacs.git coding.c (to_unicode): Fix a typo in a comment. --- 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 * 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.