diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-10-31 02:34:16 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-10-31 02:34:16 +0000 |
commit | bc86915f966235c7d6cc0a9b4f7a85c108d9dc7d (patch) | |
tree | 04f9ae6e0b7182c65e72dad124d83c684a17a92b /src/xfaces.c | |
parent | 2067568b3583007f03440ae32825e93bfaa76d44 (diff) | |
download | emacs-bc86915f966235c7d6cc0a9b4f7a85c108d9dc7d.tar.gz |
(BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG):
Rename from SHORTBITS, INTBITS, LONGBITS.
Diffstat (limited to 'src/xfaces.c')
-rw-r--r-- | src/xfaces.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index b2c410d02c4..dc7f4188863 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -400,7 +400,7 @@ DEFUN ("pixmap-spec-p", Fpixmap_spec_p, Spixmap_spec_p, 1, 1, 0, && XINT (height) > 0 /* The string must have enough bits for width * height. */ && ((XSTRING (XCONS (XCONS (XCONS (arg)->cdr)->cdr)->car)->size - * (INTBITS / sizeof (int))) + * (BITS_PER_INT / sizeof (int))) >= XFASTINT (width) * XFASTINT (height)))) ? Qt : Qnil); } |