diff options
| author | Eli Zaretskii | 2025-01-04 09:59:55 -0500 |
|---|---|---|
| committer | Eli Zaretskii | 2025-01-04 09:59:55 -0500 |
| commit | 6814ab06f2c7b5b271e6d78d4e05ce498ffc403d (patch) | |
| tree | e28e9a577f3759cd9da0e487e1c5eb83740fde33 /src | |
| parent | a1b687568fdf204f1e7e1244b60cf9d41c3ce7eb (diff) | |
| parent | 6468c3f7a74133b130d15172d770c8b7eebfeac5 (diff) | |
| download | emacs-6814ab06f2c7b5b271e6d78d4e05ce498ffc403d.tar.gz emacs-6814ab06f2c7b5b271e6d78d4e05ce498ffc403d.zip | |
Merge from origin/emacs-30
6468c3f7a74 Update doc string of 'insert'
6d8c3c0cbe4 Use `keymap*-set' over `global-set-key'/`define-key' in e...
4b2bb63b7ac Fix documentation and prompt in 'package-isolate'
55f43f5b220 ; Fix typo in treesit-explore-mode
921f454f508 Update fontification for attribute values in heex-ts-mode
ae2589ea7a5 Add expression handling to heex-ts-mode
0cacf806391 ; * etc/NEWS: Document change of 'make-cursor-line-fully-...
f47a29da5c4 * lisp/man.el (Man-mode): Improve docstring.
# Conflicts:
# etc/NEWS
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index 581bd03798e..8a5fb673fe7 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -1363,8 +1363,8 @@ to unibyte for insertion (see `string-make-unibyte'). | |||
| 1363 | 1363 | ||
| 1364 | When operating on binary data, it may be necessary to preserve the | 1364 | When operating on binary data, it may be necessary to preserve the |
| 1365 | original bytes of a unibyte string when inserting it into a multibyte | 1365 | original bytes of a unibyte string when inserting it into a multibyte |
| 1366 | buffer; to accomplish this, apply `string-as-multibyte' to the string | 1366 | buffer; to accomplish this, apply `decode-coding-string' with the |
| 1367 | and insert the result. | 1367 | `no-conversion' coding system to the string and insert the result. |
| 1368 | 1368 | ||
| 1369 | usage: (insert &rest ARGS) */) | 1369 | usage: (insert &rest ARGS) */) |
| 1370 | (ptrdiff_t nargs, Lisp_Object *args) | 1370 | (ptrdiff_t nargs, Lisp_Object *args) |