Mercurial > hg > xemacs-beta
changeset 498:88e7e9bafe19
[xemacs-hg @ 2001-05-02 16:08:10 by james]
Correctly order SET_FACE_PROPERTY parameters.
author | james |
---|---|
date | Wed, 02 May 2001 16:08:11 +0000 |
parents | 11b53bb7daf5 |
children | 36b504cdc45f |
files | src/ChangeLog src/faces.h |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <james@xemacs.org> + + * faces.h (SET_FACE_PROPERTY): pass parameters to + Fadd_spec_to_specifier in the correct order. + 2001-05-01 Martin Buchholz <martin@xemacs.org> Fix link error with gcc 3.0 on Linux.
--- 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)