aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBasil L. Contovounesios2025-11-04 10:36:40 +0100
committerBasil L. Contovounesios2026-02-14 20:41:20 +0100
commit8f76396da4d23c3ca95db146cd9dd55dcf0112c8 (patch)
tree11d46e6917b4fcb1e848358384fa86a4f63801b8
parent080ee7f7ec861e544e6671759a60e857dfd95b8c (diff)
downloademacs-8f76396da4d23c3ca95db146cd9dd55dcf0112c8.tar.gz
emacs-8f76396da4d23c3ca95db146cd9dd55dcf0112c8.zip
; Mention when make_unibyte_string was introduced.
-rw-r--r--doc/lispref/internals.texi7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi
index 26292d75369..0cb3e0ccb1d 100644
--- a/doc/lispref/internals.texi
+++ b/doc/lispref/internals.texi
@@ -1814,9 +1814,10 @@ returns unique mutable string objects.
1814@end deftypefn 1814@end deftypefn
1815 1815
1816@deftypefn Function emacs_value make_unibyte_string (emacs_env *@var{env}, const char *@var{str}, ptrdiff_t @var{len}) 1816@deftypefn Function emacs_value make_unibyte_string (emacs_env *@var{env}, const char *@var{str}, ptrdiff_t @var{len})
1817This function is like @code{make_string}, but has no restrictions on 1817This function, which is available since Emacs 28, is like
1818the values of the bytes in the C string, and can be used to pass 1818@code{make_string}, but has no restrictions on the values of the bytes
1819binary data to Emacs in the form of a unibyte string. 1819in the C string, and can be used to pass binary data to Emacs in the
1820form of a unibyte string.
1820@end deftypefn 1821@end deftypefn
1821 1822
1822The @acronym{API} does not provide functions to manipulate Lisp data 1823The @acronym{API} does not provide functions to manipulate Lisp data