]> git.eshelyaron.com Git - emacs.git/commitdiff
coding.c (to_unicode): Fix a typo in a comment.
authorEli Zaretskii <eliz@gnu.org>
Sat, 9 Mar 2013 18:09:33 +0000 (20:09 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 9 Mar 2013 18:09:33 +0000 (20:09 +0200)
src/coding.c

index 32da72ab6269a7d18171dc726be40a0e896e334b..78e6cff70785d0d50bd7cee7ccf1a9cf0e995a53 100644 (file)
@@ -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.