aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2025-01-04 09:59:55 -0500
committerEli Zaretskii2025-01-04 09:59:55 -0500
commit6814ab06f2c7b5b271e6d78d4e05ce498ffc403d (patch)
treee28e9a577f3759cd9da0e487e1c5eb83740fde33 /src
parenta1b687568fdf204f1e7e1244b60cf9d41c3ce7eb (diff)
parent6468c3f7a74133b130d15172d770c8b7eebfeac5 (diff)
downloademacs-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.c4
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
1364When operating on binary data, it may be necessary to preserve the 1364When operating on binary data, it may be necessary to preserve the
1365original bytes of a unibyte string when inserting it into a multibyte 1365original bytes of a unibyte string when inserting it into a multibyte
1366buffer; to accomplish this, apply `string-as-multibyte' to the string 1366buffer; to accomplish this, apply `decode-coding-string' with the
1367and insert the result. 1367`no-conversion' coding system to the string and insert the result.
1368 1368
1369usage: (insert &rest ARGS) */) 1369usage: (insert &rest ARGS) */)
1370 (ptrdiff_t nargs, Lisp_Object *args) 1370 (ptrdiff_t nargs, Lisp_Object *args)