diff options
| author | Eli Zaretskii | 2015-01-30 13:47:47 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2015-01-30 13:47:47 +0200 |
| commit | be7fb822b8bfee77c705fb5bccdc35d4212cfde0 (patch) | |
| tree | f8c3bdc3dc2e64a0440b85650fd84afe912ad8af /src/dispextern.h | |
| parent | 33c4409a8edb03d686ab41d493ec3668e5cd597f (diff) | |
| download | emacs-be7fb822b8bfee77c705fb5bccdc35d4212cfde0.tar.gz emacs-be7fb822b8bfee77c705fb5bccdc35d4212cfde0.zip | |
src/dispextern.h (FACE_FOR_CHAR): Fix the commentary.
Diffstat (limited to 'src/dispextern.h')
| -rw-r--r-- | src/dispextern.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index d6bbb0b4c6c..239c4425646 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -1821,8 +1821,10 @@ struct face_cache | |||
| 1821 | ((FACE) == (FACE)->ascii_face) | 1821 | ((FACE) == (FACE)->ascii_face) |
| 1822 | 1822 | ||
| 1823 | /* Return the id of the realized face on frame F that is like the face | 1823 | /* Return the id of the realized face on frame F that is like the face |
| 1824 | with id ID but is suitable for displaying character CHAR. | 1824 | FACE, but is suitable for displaying character CHAR at buffer or |
| 1825 | This macro is only meaningful for multibyte character CHAR. */ | 1825 | string position POS. OBJECT is the string object, or nil for |
| 1826 | buffer. This macro is only meaningful for multibyte character | ||
| 1827 | CHAR. */ | ||
| 1826 | 1828 | ||
| 1827 | #define FACE_FOR_CHAR(F, FACE, CHAR, POS, OBJECT) \ | 1829 | #define FACE_FOR_CHAR(F, FACE, CHAR, POS, OBJECT) \ |
| 1828 | face_for_char ((F), (FACE), (CHAR), (POS), (OBJECT)) | 1830 | face_for_char ((F), (FACE), (CHAR), (POS), (OBJECT)) |