aboutsummaryrefslogtreecommitdiffstats
path: root/src/nsterm.m
diff options
context:
space:
mode:
authorDaniel Colascione <[email protected]>2014-04-03 13:46:04 -0700
committerDaniel Colascione <[email protected]>2014-04-03 13:46:04 -0700
commitc72d972c5dee96489a3fd881b239f3f7d0db2385 (patch)
treee2004a9d5ed96a27bf9f88a9bfe2b2c097245e29 /src/nsterm.m
parent705cf384bec23354ad22a5c48d3430a96ef70ca1 (diff)
Rename EARRAYSIZE to ARRAYELTS
Diffstat (limited to 'src/nsterm.m')
-rw-r--r--src/nsterm.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nsterm.m b/src/nsterm.m
index fb4d402814..842ff194c4 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -2012,7 +2012,7 @@ ns_convert_key (unsigned code)
Internal call used by NSView-keyDown.
-------------------------------------------------------------------------- */
{
- const unsigned last_keysym = EARRAYSIZE (convert_ns_to_X_keysym);
+ const unsigned last_keysym = ARRAYELTS (convert_ns_to_X_keysym);
unsigned keysym;
/* An array would be faster, but less easy to read. */
for (keysym = 0; keysym < last_keysym; keysym += 2)