diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2016-08-17 10:15:53 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2016-08-17 10:16:22 -0700 |
commit | 848591904dbf0b5f19cdeaf73944bf6730fac7c1 (patch) | |
tree | 38659a6a0aad9c01ed16fb0ea23f00341ece087b /src | |
parent | 7faabf03d885204295701e3fc5d7e75a71c3ec82 (diff) |
* src/doc.c (Fsubstitute_command_keys): Clarify GC comments.
Diffstat (limited to 'src')
-rw-r--r-- | src/doc.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -821,7 +821,8 @@ Otherwise, return a new string. */) goto do_remap; } - /* Take relocation of string contents into account. */ + /* Fwhere_is_internal can GC, so take relocation of string + contents into account. */ strp = SDATA (str) + idx; start = strp - length_byte - 1; @@ -936,7 +937,8 @@ Otherwise, return a new string. */) bufp += length_byte; nchars += length; - /* Take relocation of string contents into account. */ + /* Some of the previous code can GC, so take relocation of + string contents into account. */ strp = SDATA (str) + idx; continue; |