]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve commentary in nsfns.m
authorPo Lu <luangruo@yahoo.com>
Thu, 20 Jul 2023 08:01:34 +0000 (16:01 +0800)
committerPo Lu <luangruo@yahoo.com>
Thu, 20 Jul 2023 08:01:34 +0000 (16:01 +0800)
* src/nsfns.m (lispString): Avoid C++ comment and make the
commentary actually relevant to the reason `make_string' is
used.

src/nsfns.m

index 5ae2cc77bb227f4e936e17f4e06bdc64741c2864..fe565a423aa8c8021d348640a12d2da344f1ad07 100644 (file)
@@ -3829,7 +3829,11 @@ all_nonzero_ascii (unsigned char *str, ptrdiff_t n)
 /* Make a Lisp string from an NSString.  */
 - (Lisp_Object)lispString
 {
-  // make_string behaves predictably and correctly with UTF-8 input.
+  /* `make_string' creates a string with a given length, instead of
+     searching for a trailing NULL byte to determine its end.  This is
+     important because this function is called to convert NSString
+     objects containing clipboard data, which can contain NUL bytes,
+     into Lisp strings.  (bug#64697) */
   return make_string ([self UTF8String],
                       [self lengthOfBytesUsingEncoding: NSUTF8StringEncoding]);
 }