diff options
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index c080cc6b146..dcc157e0b96 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -2264,7 +2264,9 @@ struct Lisp_Marker | |||
| 2264 | does not point anywhere. */ | 2264 | does not point anywhere. */ |
| 2265 | 2265 | ||
| 2266 | /* For markers that point somewhere, | 2266 | /* For markers that point somewhere, |
| 2267 | this is used to chain of all the markers in a given buffer. */ | 2267 | this is used to chain of all the markers in a given buffer. |
| 2268 | The chain does not preserve markers from garbage collection; | ||
| 2269 | instead, markers are removed from the chain when freed by GC. */ | ||
| 2268 | /* We could remove it and use an array in buffer_text instead. | 2270 | /* We could remove it and use an array in buffer_text instead. |
| 2269 | That would also allow us to preserve it ordered. */ | 2271 | That would also allow us to preserve it ordered. */ |
| 2270 | struct Lisp_Marker *next; | 2272 | struct Lisp_Marker *next; |