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/dired.c | |
parent | 705cf384bec23354ad22a5c48d3430a96ef70ca1 (diff) | |
download | emacs-c72d972c5dee96489a3fd881b239f3f7d0db2385.tar.gz emacs-c72d972c5dee96489a3fd881b239f3f7d0db2385.tar.bz2 emacs-c72d972c5dee96489a3fd881b239f3f7d0db2385.zip |
Rename EARRAYSIZE to ARRAYELTS
Diffstat (limited to 'src/dired.c')
-rw-r--r-- | src/dired.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dired.c b/src/dired.c index 5d99314fde0..d8da45bf776 100644 --- a/src/dired.c +++ b/src/dired.c @@ -984,7 +984,7 @@ file_attributes (int fd, char const *name, Lisp_Object id_format) values[10] = INTEGER_TO_CONS (s.st_ino); values[11] = INTEGER_TO_CONS (s.st_dev); - return Flist (EARRAYSIZE (values), values); + return Flist (ARRAYELTS (values), values); } DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0, |