| Chris Lattner | f636784 | 2003-11-20 19:05:21 +0000 | [diff] [blame] | 1 | struct face_cachel { |
| 2 | unsigned int reverse :1; | ||||
| 3 | unsigned char font_specified[1]; | ||||
| 4 | }; | ||||
| 5 | |||||
| 6 | void | ||||
| 7 | ensure_face_cachel_contains_charset (struct face_cachel *cachel) { | ||||
| 8 | cachel->font_specified[0] = 0; | ||||
| 9 | } | ||||
| 10 | |||||