aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-25 14:34:39 -0700
committerPaul Eggert2011-04-25 14:34:39 -0700
commit77b37c05572d1028d0ec2c264ac0ed3a89c0f4da (patch)
treecb5140f5f92f5f91bb9e8846e5254fc58df52cc4 /src/buffer.c
parentb102ceb110a9cd38f5c589c1869747b1e1c792cb (diff)
downloademacs-77b37c05572d1028d0ec2c264ac0ed3a89c0f4da.tar.gz
emacs-77b37c05572d1028d0ec2c264ac0ed3a89c0f4da.zip
* lisp.h: (XVECTOR_SIZE): Remove. All uses replaced with ASIZE.
(ASIZE): Now contains previous implementation of XVECTOR_SIZE instead of invoking XVECTOR_SIZE.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index aa50eff4fd0..ddaacd93707 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -4178,7 +4178,7 @@ static int last_overlay_modification_hooks_used;
4178static void 4178static void
4179add_overlay_mod_hooklist (Lisp_Object functionlist, Lisp_Object overlay) 4179add_overlay_mod_hooklist (Lisp_Object functionlist, Lisp_Object overlay)
4180{ 4180{
4181 int oldsize = XVECTOR_SIZE (last_overlay_modification_hooks); 4181 int oldsize = ASIZE (last_overlay_modification_hooks);
4182 4182
4183 if (last_overlay_modification_hooks_used == oldsize) 4183 if (last_overlay_modification_hooks_used == oldsize)
4184 last_overlay_modification_hooks = larger_vector 4184 last_overlay_modification_hooks = larger_vector