Is there support for lighweight strings?
/Nordlöw
If you look at emacs/src/lisp.h and search for Lisp_String, you'll see
that strings are represented as a 4-word object:
- size in chars
- size in bytes
- pointer to text-properties interval tree
- pointer to the beginning of the string's content
Stefan
Thanks,
Per