src/dispextern.h (FACE_FOR_CHAR): Fix the commentary.

This commit is contained in:
Eli Zaretskii 2015-01-30 13:47:47 +02:00
parent 33c4409a8e
commit be7fb822b8
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2015-01-30 Eli Zaretskii <eliz@gnu.org>
* dispextern.h (FACE_FOR_CHAR): Fix the commentary.
2015-01-29 Hans Wennborg <hwennborg@google.com> (tiny change)
* emacs.c (decode_env_path): Add parentheses around ternary

View file

@ -1821,8 +1821,10 @@ struct face_cache
((FACE) == (FACE)->ascii_face)
/* Return the id of the realized face on frame F that is like the face
with id ID but is suitable for displaying character CHAR.
This macro is only meaningful for multibyte character CHAR. */
FACE, but is suitable for displaying character CHAR at buffer or
string position POS. OBJECT is the string object, or nil for
buffer. This macro is only meaningful for multibyte character
CHAR. */
#define FACE_FOR_CHAR(F, FACE, CHAR, POS, OBJECT) \
face_for_char ((F), (FACE), (CHAR), (POS), (OBJECT))