diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-25 14:34:39 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-25 14:34:39 -0700 |
commit | 77b37c05572d1028d0ec2c264ac0ed3a89c0f4da (patch) | |
tree | cb5140f5f92f5f91bb9e8846e5254fc58df52cc4 /src/callint.c | |
parent | b102ceb110a9cd38f5c589c1869747b1e1c792cb (diff) | |
download | emacs-77b37c05572d1028d0ec2c264ac0ed3a89c0f4da.tar.gz |
* 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/callint.c')
-rw-r--r-- | src/callint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c index 95b193ad91a..44d7a02f6bf 100644 --- a/src/callint.c +++ b/src/callint.c @@ -293,7 +293,7 @@ invoke it. If KEYS is omitted or nil, the return value of else { CHECK_VECTOR (keys); - key_count = XVECTOR_SIZE (keys); + key_count = ASIZE (keys); } /* Save this now, since use of minibuffer will clobber it. */ |