diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 99d5ca149d5..a35b48cfb22 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -1889,7 +1889,7 @@ allocate_string_data (struct Lisp_String *s, | |||
| 1889 | tally_consing (needed); | 1889 | tally_consing (needed); |
| 1890 | } | 1890 | } |
| 1891 | 1891 | ||
| 1892 | /* Reallocate the data for STRING when a single character is replaced. | 1892 | /* Reallocate multibyte STRING data when a single character is replaced. |
| 1893 | The character is at byte offset CIDX_BYTE in the string. | 1893 | The character is at byte offset CIDX_BYTE in the string. |
| 1894 | The character being replaced is CLEN bytes long, | 1894 | The character being replaced is CLEN bytes long, |
| 1895 | and the character that will replace it is NEW_CLEN bytes long. | 1895 | and the character that will replace it is NEW_CLEN bytes long. |
| @@ -1900,6 +1900,7 @@ unsigned char * | |||
| 1900 | resize_string_data (Lisp_Object string, ptrdiff_t cidx_byte, | 1900 | resize_string_data (Lisp_Object string, ptrdiff_t cidx_byte, |
| 1901 | int clen, int new_clen) | 1901 | int clen, int new_clen) |
| 1902 | { | 1902 | { |
| 1903 | eassume (STRING_MULTIBYTE (string)); | ||
| 1903 | sdata *old_sdata = SDATA_OF_STRING (XSTRING (string)); | 1904 | sdata *old_sdata = SDATA_OF_STRING (XSTRING (string)); |
| 1904 | ptrdiff_t nchars = SCHARS (string); | 1905 | ptrdiff_t nchars = SCHARS (string); |
| 1905 | ptrdiff_t nbytes = SBYTES (string); | 1906 | ptrdiff_t nbytes = SBYTES (string); |
| @@ -1911,6 +1912,7 @@ resize_string_data (Lisp_Object string, ptrdiff_t cidx_byte, | |||
| 1911 | { | 1912 | { |
| 1912 | /* No need to reallocate, as the size change falls within the | 1913 | /* No need to reallocate, as the size change falls within the |
| 1913 | alignment slop. */ | 1914 | alignment slop. */ |
| 1915 | XSTRING (string)->u.s.size_byte = new_nbytes; | ||
| 1914 | new_charaddr = data + cidx_byte; | 1916 | new_charaddr = data + cidx_byte; |
| 1915 | memmove (new_charaddr + new_clen, new_charaddr + clen, | 1917 | memmove (new_charaddr + new_clen, new_charaddr + clen, |
| 1916 | nbytes - (cidx_byte + (clen - 1))); | 1918 | nbytes - (cidx_byte + (clen - 1))); |