diff options
| author | Paul Eggert | 2011-04-25 14:34:39 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-25 14:34:39 -0700 |
| commit | 77b37c05572d1028d0ec2c264ac0ed3a89c0f4da (patch) | |
| tree | cb5140f5f92f5f91bb9e8846e5254fc58df52cc4 /src/bytecode.c | |
| parent | b102ceb110a9cd38f5c589c1869747b1e1c792cb (diff) | |
| download | emacs-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/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 839e0f7d54e..c3cd3d43072 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -467,7 +467,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth, | |||
| 467 | CHECK_NUMBER (maxdepth); | 467 | CHECK_NUMBER (maxdepth); |
| 468 | 468 | ||
| 469 | #ifdef BYTE_CODE_SAFE | 469 | #ifdef BYTE_CODE_SAFE |
| 470 | const_length = XVECTOR_SIZE (vector); | 470 | const_length = ASIZE (vector); |
| 471 | #endif | 471 | #endif |
| 472 | 472 | ||
| 473 | if (STRING_MULTIBYTE (bytestr)) | 473 | if (STRING_MULTIBYTE (bytestr)) |