aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2022-08-23 19:30:18 +0300
committerEli Zaretskii2022-08-23 19:30:18 +0300
commitb48bf42fc208281ba549f28d7a26d44713b34863 (patch)
treed2fb19c92b3f880400c60c97bbfe293a55222a34 /src
parent10585c4f30abba0b63f9b8eb4971e814ce910140 (diff)
downloademacs-b48bf42fc208281ba549f28d7a26d44713b34863.tar.gz
emacs-b48bf42fc208281ba549f28d7a26d44713b34863.zip
; * src/buffer.h (struct buffer_text): Improve commentary.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 77f9ea20afa..cbdbae798ba 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -274,7 +274,9 @@ struct buffer_text
274 end_unchanged contain no useful information. */ 274 end_unchanged contain no useful information. */
275 modiff_count overlay_unchanged_modified; 275 modiff_count overlay_unchanged_modified;
276 276
277 /* CHARS_MODIFF as of last redisplay that finished. */ 277 /* CHARS_MODIFF as of last redisplay that finished. It's used
278 when we only care about changes in actual buffer text, not in
279 any other kind of changes, like properties etc. */
278 modiff_count chars_unchanged_modified; 280 modiff_count chars_unchanged_modified;
279 281
280 /* Properties of this buffer's text. */ 282 /* Properties of this buffer's text. */