diff options
author | Daniel Colascione <dancol@dancol.org> | 2014-04-03 13:46:04 -0700 |
---|---|---|
committer | Daniel Colascione <dancol@dancol.org> | 2014-04-03 13:46:04 -0700 |
commit | c72d972c5dee96489a3fd881b239f3f7d0db2385 (patch) | |
tree | e2004a9d5ed96a27bf9f88a9bfe2b2c097245e29 /src/chartab.c | |
parent | 705cf384bec23354ad22a5c48d3430a96ef70ca1 (diff) | |
download | emacs-c72d972c5dee96489a3fd881b239f3f7d0db2385.tar.gz |
Rename EARRAYSIZE to ARRAYELTS
Diffstat (limited to 'src/chartab.c')
-rw-r--r-- | src/chartab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chartab.c b/src/chartab.c index 56a6f548749..4d4e6381b19 100644 --- a/src/chartab.c +++ b/src/chartab.c @@ -1221,7 +1221,7 @@ uniprop_decode_value_run_length (Lisp_Object table, Lisp_Object value) static uniprop_decoder_t uniprop_decoder [] = { uniprop_decode_value_run_length }; -static const int uniprop_decoder_count = EARRAYSIZE (uniprop_decoder); +static const int uniprop_decoder_count = ARRAYELTS (uniprop_decoder); /* Return the decoder of char-table TABLE or nil if none. */ @@ -1299,7 +1299,7 @@ static uniprop_encoder_t uniprop_encoder[] = uniprop_encode_value_run_length, uniprop_encode_value_numeric }; -static const int uniprop_encoder_count = EARRAYSIZE (uniprop_encoder); +static const int uniprop_encoder_count = ARRAYELTS (uniprop_encoder); /* Return the encoder of char-table TABLE or nil if none. */ |