diff options
| author | Michael Albinus | 2020-08-25 15:29:38 +0200 |
|---|---|---|
| committer | Michael Albinus | 2020-08-25 15:29:38 +0200 |
| commit | 36f2f67c96d44c82ce31dafb38cd4e2622a5a372 (patch) | |
| tree | 61f4d8cb918bfc22c7deab7258f00e2ae36d4482 /src | |
| parent | 478c2e23620eeda65030458762a843231f7e9b35 (diff) | |
| parent | 44104a607aeb7fd73bf7edcbbe6a508eee36dd0f (diff) | |
| download | emacs-36f2f67c96d44c82ce31dafb38cd4e2622a5a372.tar.gz emacs-36f2f67c96d44c82ce31dafb38cd4e2622a5a372.zip | |
Merge from origin/emacs-27
44104a607a Fix error in GMP test
e26e63444d Add Feature testing for Windows binaries
4e2caef384 ; * src/character.c (str_as_multibyte): Fix the commentary.
d3a4ce8420 Revert "; * etc/NEWS: Remove temporary note on documentati...
16f00e36dc * admin/admin.el (set-version): Trap yet another NEWS error.
121be3e118 ; * etc/NEWS: Remove temporary note on documentation. (Bu...
5fcb97dabd Fix cond jump table compilation (bug#42919)
Diffstat (limited to 'src')
| -rw-r--r-- | src/character.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/character.c b/src/character.c index 4902e564b1d..5860f6a0c8c 100644 --- a/src/character.c +++ b/src/character.c | |||
| @@ -495,9 +495,9 @@ parse_str_as_multibyte (const unsigned char *str, ptrdiff_t len, | |||
| 495 | 495 | ||
| 496 | /* Arrange unibyte text at STR of NBYTES bytes as a multibyte text. | 496 | /* Arrange unibyte text at STR of NBYTES bytes as a multibyte text. |
| 497 | It actually converts only such 8-bit characters that don't construct | 497 | It actually converts only such 8-bit characters that don't construct |
| 498 | a multibyte sequence to multibyte forms of Latin-1 characters. If | 498 | a multibyte sequence to multibyte forms of raw bytes. If NCHARS |
| 499 | NCHARS is nonzero, set *NCHARS to the number of characters in the | 499 | is nonzero, set *NCHARS to the number of characters in the text. |
| 500 | text. It is assured that we can use LEN bytes at STR as a work | 500 | It is assured that we can use LEN bytes at STR as a work |
| 501 | area and that is enough. Return the number of bytes of the | 501 | area and that is enough. Return the number of bytes of the |
| 502 | resulting text. */ | 502 | resulting text. */ |
| 503 | 503 | ||