aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-17 21:08:35 -0700
committerPaul Eggert2011-04-17 21:08:35 -0700
commit0b432f213c529745b3a8315db6356199fde2ec25 (patch)
tree1991254b0a32a24736790b48d2646f1da48df99a /src/alloc.c
parentcc2e7b46b8c45216af99090b1ffd683a493c1564 (diff)
downloademacs-0b432f213c529745b3a8315db6356199fde2ec25.tar.gz
emacs-0b432f213c529745b3a8315db6356199fde2ec25.zip
* alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
This doesn't fix a bug but makes the code clearer.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 412527b41a0..ca4abba9f8d 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -835,7 +835,7 @@ lisp_free (POINTER_TYPE *block)
835 nothing else. */ 835 nothing else. */
836#define BLOCK_PADDING 0 836#define BLOCK_PADDING 0
837#define BLOCK_BYTES \ 837#define BLOCK_BYTES \
838 (BLOCK_ALIGN - sizeof (struct ablock *) - BLOCK_PADDING) 838 (BLOCK_ALIGN - sizeof (struct ablocks *) - BLOCK_PADDING)
839 839
840/* Internal data structures and constants. */ 840/* Internal data structures and constants. */
841 841