# HG changeset patch # User james # Date 988819691 0 # Node ID 88e7e9bafe19881df18be56184eac9579fa5a388 # Parent 11b53bb7daf51942354f5dcef71b2d5c0598d7c5 [xemacs-hg @ 2001-05-02 16:08:10 by james] Correctly order SET_FACE_PROPERTY parameters. diff -r 11b53bb7daf5 -r 88e7e9bafe19 src/ChangeLog --- a/src/ChangeLog Wed May 02 10:22:58 2001 +0000 +++ b/src/ChangeLog Wed May 02 16:08:11 2001 +0000 @@ -1,3 +1,8 @@ +2001-05-02 Jerry James + + * faces.h (SET_FACE_PROPERTY): pass parameters to + Fadd_spec_to_specifier in the correct order. + 2001-05-01 Martin Buchholz Fix link error with gcc 3.0 on Linux. diff -r 11b53bb7daf5 -r 88e7e9bafe19 src/faces.h --- a/src/faces.h Wed May 02 10:22:58 2001 +0000 +++ b/src/faces.h Wed May 02 16:08:11 2001 +0000 @@ -341,9 +341,9 @@ #define FACE_PROPERTY_SPEC_LIST(face, property, locale) \ Fspecifier_spec_list (FACE_PROPERTY_SPECIFIER (face, property), \ locale, Qnil, Qnil) -#define SET_FACE_PROPERTY(face, property, locale, value, tag, how_to_add) \ +#define SET_FACE_PROPERTY(face, property, value, locale, tag, how_to_add) \ Fadd_spec_to_specifier (FACE_PROPERTY_SPECIFIER (face, property), \ - locale, value, tag, how_to_add) + value, locale, tag, how_to_add) #define FACE_FOREGROUND(face, domain) \ FACE_PROPERTY_INSTANCE (face, Qforeground, domain, 0, Qzero)