1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

; * src/json.c (Fjson_insert): Doc fix.

This commit is contained in:
Eli Zaretskii 2024-04-02 20:43:29 +03:00
parent c3781bf59e
commit 5eedf41b31

View File

@ -637,7 +637,8 @@ DEFUN ("json-insert", Fjson_insert, Sjson_insert, 1, MANY,
doc: /* Insert the JSON representation of OBJECT before point.
This is the same as (insert (json-serialize OBJECT ...)), but potentially
faster, and with the difference that Unicode characters are inserted as
themselves into multibyte buffers, as UTF-8 bytes into unibyte buffers.
themselves into multibyte buffers, and as UTF-8 byte sequencess into
unibyte buffers.
See the function `json-serialize' for allowed values of OBJECT and ARGS.
usage: (json-insert OBJECT &rest ARGS) */)
(ptrdiff_t nargs, Lisp_Object *args)