diff options
| author | Gerd Möllmann | 2024-06-11 11:26:18 +0200 |
|---|---|---|
| committer | Gerd Möllmann | 2024-06-14 10:15:28 +0200 |
| commit | bb59e7a544c4eb8749c6e46989ceffafc296c7e6 (patch) | |
| tree | 9b4484b247a4356c3e9769edc1d7a8ccdc90c299 /src/undo.c | |
| parent | cd066bcdfa976db3a383296dc0f3cfaa2994f105 (diff) | |
| download | emacs-bb59e7a544c4eb8749c6e46989ceffafc296c7e6.tar.gz emacs-bb59e7a544c4eb8749c6e46989ceffafc296c7e6.zip | |
Use weak vector for buffer markers
Diffstat (limited to 'src/undo.c')
| -rw-r--r-- | src/undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/undo.c b/src/undo.c index afab89067ec..41b6c7c19f0 100644 --- a/src/undo.c +++ b/src/undo.c | |||
| @@ -128,7 +128,7 @@ record_marker_adjustments (ptrdiff_t from, ptrdiff_t to) | |||
| 128 | { | 128 | { |
| 129 | prepare_record (); | 129 | prepare_record (); |
| 130 | 130 | ||
| 131 | for (struct Lisp_Marker *m = BUF_MARKERS (current_buffer); m; m = m->next) | 131 | DO_MARKERS (current_buffer, m) |
| 132 | { | 132 | { |
| 133 | ptrdiff_t charpos = m->charpos; | 133 | ptrdiff_t charpos = m->charpos; |
| 134 | eassert (charpos <= Z); | 134 | eassert (charpos <= Z); |