summaryrefslogtreecommitdiff
path: root/src/w32fns.c
diff options
context:
space:
mode:
authorDaniel Colascione <dancol@dancol.org>2014-04-03 13:46:04 -0700
committerDaniel Colascione <dancol@dancol.org>2014-04-03 13:46:04 -0700
commitc72d972c5dee96489a3fd881b239f3f7d0db2385 (patch)
treee2004a9d5ed96a27bf9f88a9bfe2b2c097245e29 /src/w32fns.c
parent705cf384bec23354ad22a5c48d3430a96ef70ca1 (diff)
downloademacs-c72d972c5dee96489a3fd881b239f3f7d0db2385.tar.gz
emacs-c72d972c5dee96489a3fd881b239f3f7d0db2385.tar.bz2
emacs-c72d972c5dee96489a3fd881b239f3f7d0db2385.zip
Rename EARRAYSIZE to ARRAYELTS
Diffstat (limited to 'src/w32fns.c')
-rw-r--r--src/w32fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index 3c366022770..77476757c2f 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -723,7 +723,7 @@ w32_default_color_map (void)
cmap = Qnil;
- for (i = 0; i < EARRAYSIZE (w32_color_map); pc++, i++)
+ for (i = 0; i < ARRAYELTS (w32_color_map); pc++, i++)
cmap = Fcons (Fcons (build_string (pc->name),
make_number (pc->colorref)),
cmap);