diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index 28c97c11a6b..1df3326762d 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2061,9 +2061,14 @@ Point and before-insertion markers move forward to end up | |||
| 2061 | Any other markers at the point of insertion remain before the text. | 2061 | Any other markers at the point of insertion remain before the text. |
| 2062 | 2062 | ||
| 2063 | If the current buffer is multibyte, unibyte strings are converted | 2063 | If the current buffer is multibyte, unibyte strings are converted |
| 2064 | to multibyte for insertion (see `unibyte-char-to-multibyte'). | 2064 | to multibyte for insertion (see `string-make-multibyte'). |
| 2065 | If the current buffer is unibyte, multibyte strings are converted | 2065 | If the current buffer is unibyte, multibyte strings are converted |
| 2066 | to unibyte for insertion. | 2066 | to unibyte for insertion (see `string-make-unibyte'). |
| 2067 | |||
| 2068 | When operating on binary data, it may be necessary to preserve the | ||
| 2069 | original bytes of a unibyte string when inserting it into a multibyte | ||
| 2070 | buffer; to accomplish this, apply `string-as-multibyte' to the string | ||
| 2071 | and insert the result. | ||
| 2067 | 2072 | ||
| 2068 | usage: (insert &rest ARGS) */) | 2073 | usage: (insert &rest ARGS) */) |
| 2069 | (nargs, args) | 2074 | (nargs, args) |