aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2012-12-29 11:24:13 +0200
committerEli Zaretskii2012-12-29 11:24:13 +0200
commitd6cae7321e32cfcb101c17f74e62f7b1698ddad0 (patch)
treed76e9f4b543f69712b711006ac54956629fb22d2 /src
parentbb709253f3ef861a0457cc7f541f5730d551bda2 (diff)
downloademacs-d6cae7321e32cfcb101c17f74e62f7b1698ddad0.tar.gz
emacs-d6cae7321e32cfcb101c17f74e62f7b1698ddad0.zip
More improvements in 'struct glyph' comments.
Diffstat (limited to 'src')
-rw-r--r--src/dispextern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index df0098df478..8ea84a0af6f 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -321,14 +321,14 @@ struct glyph
321 the right edge of a row have their position set to the next 321 the right edge of a row have their position set to the next
322 buffer position that is not shown on this row. Glyphs inserted 322 buffer position that is not shown on this row. Glyphs inserted
323 by redisplay, such as the empty space after the end of a line on 323 by redisplay, such as the empty space after the end of a line on
324 TTYs, have this set to -1. */ 324 TTYs, or the overlay-arrow on a TTY, have this set to -1. */
325 ptrdiff_t charpos; 325 ptrdiff_t charpos;
326 326
327 /* Lisp object source of this glyph. Currently either a buffer or a 327 /* Lisp object source of this glyph. Currently either a buffer or a
328 string, if the glyph was produced from characters which came from 328 string, if the glyph was produced from characters which came from
329 a buffer or a string; or 0 if the glyph was inserted by redisplay 329 a buffer or a string; or 0 if the glyph was inserted by redisplay
330 for its own purposes such as padding or truncation/continuation 330 for its own purposes, such as padding or truncation/continuation
331 glyphs on TTYs. */ 331 glyphs, or the overlay-arrow glyphs on TTYs. */
332 Lisp_Object object; 332 Lisp_Object object;
333 333
334 /* Width in pixels. */ 334 /* Width in pixels. */