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/dired.c | |
| parent | 705cf384bec23354ad22a5c48d3430a96ef70ca1 (diff) | |
| download | emacs-c72d972c5dee96489a3fd881b239f3f7d0db2385.tar.gz 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) | |||
| 984 | values[10] = INTEGER_TO_CONS (s.st_ino); | 984 | values[10] = INTEGER_TO_CONS (s.st_ino); |
| 985 | values[11] = INTEGER_TO_CONS (s.st_dev); | 985 | values[11] = INTEGER_TO_CONS (s.st_dev); |
| 986 | 986 | ||
| 987 | return Flist (EARRAYSIZE (values), values); | 987 | return Flist (ARRAYELTS (values), values); |
| 988 | } | 988 | } |
| 989 | 989 | ||
| 990 | DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0, | 990 | DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0, |