diff options
| author | Daniel Colascione | 2014-04-03 13:46:04 -0700 |
|---|---|---|
| committer | Daniel Colascione | 2014-04-03 13:46:04 -0700 |
| commit | c72d972c5dee96489a3fd881b239f3f7d0db2385 (patch) | |
| tree | e2004a9d5ed96a27bf9f88a9bfe2b2c097245e29 /src/chartab.c | |
| parent | 705cf384bec23354ad22a5c48d3430a96ef70ca1 (diff) | |
| download | emacs-c72d972c5dee96489a3fd881b239f3f7d0db2385.tar.gz emacs-c72d972c5dee96489a3fd881b239f3f7d0db2385.zip | |
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) | |||
| 1221 | static uniprop_decoder_t uniprop_decoder [] = | 1221 | static uniprop_decoder_t uniprop_decoder [] = |
| 1222 | { uniprop_decode_value_run_length }; | 1222 | { uniprop_decode_value_run_length }; |
| 1223 | 1223 | ||
| 1224 | static const int uniprop_decoder_count = EARRAYSIZE (uniprop_decoder); | 1224 | static const int uniprop_decoder_count = ARRAYELTS (uniprop_decoder); |
| 1225 | 1225 | ||
| 1226 | /* Return the decoder of char-table TABLE or nil if none. */ | 1226 | /* Return the decoder of char-table TABLE or nil if none. */ |
| 1227 | 1227 | ||
| @@ -1299,7 +1299,7 @@ static uniprop_encoder_t uniprop_encoder[] = | |||
| 1299 | uniprop_encode_value_run_length, | 1299 | uniprop_encode_value_run_length, |
| 1300 | uniprop_encode_value_numeric }; | 1300 | uniprop_encode_value_numeric }; |
| 1301 | 1301 | ||
| 1302 | static const int uniprop_encoder_count = EARRAYSIZE (uniprop_encoder); | 1302 | static const int uniprop_encoder_count = ARRAYELTS (uniprop_encoder); |
| 1303 | 1303 | ||
| 1304 | /* Return the encoder of char-table TABLE or nil if none. */ | 1304 | /* Return the encoder of char-table TABLE or nil if none. */ |
| 1305 | 1305 | ||