diff options
| author | Paul Eggert | 2012-07-19 15:35:58 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-07-19 15:35:58 -0700 |
| commit | 52b852c77d74800aaa1338dc72f786f7e261bfee (patch) | |
| tree | f2d4a83567f37b1fa9a70d719565c2dc7afc9d06 /src/data.c | |
| parent | 8a4e6db81ae0c04a73693718cb8aaa59e160663f (diff) | |
| download | emacs-52b852c77d74800aaa1338dc72f786f7e261bfee.tar.gz emacs-52b852c77d74800aaa1338dc72f786f7e261bfee.zip | |
* buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
(FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
'for_each_per_buffer_object_at'.
All uses changed. It's better to use upper-case for macros that
cannot be implemented as functions, to give the reader a clue
that they're special.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index 84bd347b136..110e8ae41ab 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1401,7 +1401,7 @@ for this variable. */) | |||
| 1401 | { | 1401 | { |
| 1402 | struct buffer *b; | 1402 | struct buffer *b; |
| 1403 | 1403 | ||
| 1404 | for_each_buffer (b) | 1404 | FOR_EACH_BUFFER (b) |
| 1405 | if (!PER_BUFFER_VALUE_P (b, idx)) | 1405 | if (!PER_BUFFER_VALUE_P (b, idx)) |
| 1406 | PER_BUFFER_VALUE (b, offset) = value; | 1406 | PER_BUFFER_VALUE (b, offset) = value; |
| 1407 | } | 1407 | } |