diff options
| author | Eli Zaretskii | 2024-04-02 20:43:29 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2024-04-02 20:43:29 +0300 |
| commit | 5eedf41b31ad8b471ffb430d26f15c66139ff7eb (patch) | |
| tree | e9646e45f1fc952a575704db776e444fc132576f /src | |
| parent | c3781bf59edcd67769d068b5bc8f724e890d8e54 (diff) | |
| download | emacs-5eedf41b31ad8b471ffb430d26f15c66139ff7eb.tar.gz emacs-5eedf41b31ad8b471ffb430d26f15c66139ff7eb.zip | |
; * src/json.c (Fjson_insert): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/json.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/json.c b/src/json.c index 45dcdde98ea..b4ea84206fe 100644 --- a/src/json.c +++ b/src/json.c | |||
| @@ -637,7 +637,8 @@ DEFUN ("json-insert", Fjson_insert, Sjson_insert, 1, MANY, | |||
| 637 | doc: /* Insert the JSON representation of OBJECT before point. | 637 | doc: /* Insert the JSON representation of OBJECT before point. |
| 638 | This is the same as (insert (json-serialize OBJECT ...)), but potentially | 638 | This is the same as (insert (json-serialize OBJECT ...)), but potentially |
| 639 | faster, and with the difference that Unicode characters are inserted as | 639 | faster, and with the difference that Unicode characters are inserted as |
| 640 | themselves into multibyte buffers, as UTF-8 bytes into unibyte buffers. | 640 | themselves into multibyte buffers, and as UTF-8 byte sequencess into |
| 641 | unibyte buffers. | ||
| 641 | See the function `json-serialize' for allowed values of OBJECT and ARGS. | 642 | See the function `json-serialize' for allowed values of OBJECT and ARGS. |
| 642 | usage: (json-insert OBJECT &rest ARGS) */) | 643 | usage: (json-insert OBJECT &rest ARGS) */) |
| 643 | (ptrdiff_t nargs, Lisp_Object *args) | 644 | (ptrdiff_t nargs, Lisp_Object *args) |