aboutsummaryrefslogtreecommitdiffstats
path: root/src/image.c
diff options
context:
space:
mode:
authorDaniel Colascione2014-04-03 13:46:04 -0700
committerDaniel Colascione2014-04-03 13:46:04 -0700
commitc72d972c5dee96489a3fd881b239f3f7d0db2385 (patch)
treee2004a9d5ed96a27bf9f88a9bfe2b2c097245e29 /src/image.c
parent705cf384bec23354ad22a5c48d3430a96ef70ca1 (diff)
downloademacs-c72d972c5dee96489a3fd881b239f3f7d0db2385.tar.gz
emacs-c72d972c5dee96489a3fd881b239f3f7d0db2385.zip
Rename EARRAYSIZE to ARRAYELTS
Diffstat (limited to 'src/image.c')
-rw-r--r--src/image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c
index 64bd41b52ab..bfbdfbc86b2 100644
--- a/src/image.c
+++ b/src/image.c
@@ -3955,7 +3955,7 @@ xpm_str_to_color_key (const char *s)
3955{ 3955{
3956 int i; 3956 int i;
3957 3957
3958 for (i = 0; i < EARRAYSIZE (xpm_color_key_strings); i++) 3958 for (i = 0; i < ARRAYELTS (xpm_color_key_strings); i++)
3959 if (strcmp (xpm_color_key_strings[i], s) == 0) 3959 if (strcmp (xpm_color_key_strings[i], s) == 0)
3960 return i; 3960 return i;
3961 return -1; 3961 return -1;