diff options
| author | Gerd Moellmann | 2001-03-14 13:15:51 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-03-14 13:15:51 +0000 |
| commit | f920e581ee735afcaceb842f7e4a393cf6854539 (patch) | |
| tree | 9a4a9a6701a717f276de6f003553421d774fb435 /src | |
| parent | b863a173ada1fc3277db355d5297181edb5de6db (diff) | |
| download | emacs-f920e581ee735afcaceb842f7e4a393cf6854539.tar.gz emacs-f920e581ee735afcaceb842f7e4a393cf6854539.zip | |
Improve comments.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispextern.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index fa5e40e0650..c463e2ca173 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -242,7 +242,9 @@ struct glyph | |||
| 242 | int charpos; | 242 | int charpos; |
| 243 | 243 | ||
| 244 | /* Lisp object source of this glyph. Currently either a buffer or | 244 | /* Lisp object source of this glyph. Currently either a buffer or |
| 245 | a string, or 0. */ | 245 | a string, if the glyph was produced from characters which came from |
| 246 | a buffer or a string; or 0 if the glyph was inserted by redisplay | ||
| 247 | for its own purposes such as padding. */ | ||
| 246 | Lisp_Object object; | 248 | Lisp_Object object; |
| 247 | 249 | ||
| 248 | /* Width in pixels. */ | 250 | /* Width in pixels. */ |
| @@ -281,8 +283,9 @@ struct glyph | |||
| 281 | padding. */ | 283 | padding. */ |
| 282 | unsigned padding_p : 1; | 284 | unsigned padding_p : 1; |
| 283 | 285 | ||
| 284 | /* 1 means the actual glyph is not available in the current | 286 | /* 1 means the actual glyph is not available, draw a box instead. |
| 285 | system. */ | 287 | This can happen when a font couldn't be loaded, or a character |
| 288 | doesn't have a glyph in a font. */ | ||
| 286 | unsigned glyph_not_available_p : 1; | 289 | unsigned glyph_not_available_p : 1; |
| 287 | 290 | ||
| 288 | /* Face of the glyph. */ | 291 | /* Face of the glyph. */ |