1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-20 19:42:53 -08:00

; * src/lisp.h (struct Lisp_String): mention terminating NUL

This commit is contained in:
Mattias Engdegård 2025-10-22 09:02:08 +02:00
parent ef58006fee
commit 6a3d22f3a0

View file

@ -1579,6 +1579,9 @@ struct Lisp_String
ptrdiff_t size_byte;
INTERVAL intervals; /* Text properties in this string. */
/* The data is always followed by a NUL, not included in size or
size_byte, for C interoperability, but may also contain NULs
itself. */
unsigned char *data;
} s;
struct Lisp_String *next;