diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-09-17 00:28:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-09-17 00:28:39 +0000 |
commit | ba96afb751a13bfd70405f0434c2f66c2d9c6303 (patch) | |
tree | 74d23e666729570d6e5d4ea9310b8d622f66b2fc /src/dispextern.h | |
parent | 8774deeb70da36ecf5113a5c8b2faa8d8eb999c2 (diff) | |
download | emacs-ba96afb751a13bfd70405f0434c2f66c2d9c6303.tar.gz |
(struct face): Use EMACS_UINT.
Diffstat (limited to 'src/dispextern.h')
-rw-r--r-- | src/dispextern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 1c73966f6c6..8826ebdecc5 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -38,10 +38,10 @@ struct face int cached_index; /* Pixel value for foreground color. */ - int foreground; + EMACS_UINT foreground; /* Pixel value for background color. */ - int background; + EMACS_UINT background; /* Font used for this face. */ XFontStruct *font; |