diff options
| author | Paul Eggert | 2011-04-01 00:18:17 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-01 00:18:17 -0700 |
| commit | 1be4d76143bb2d969e7c78f7af4c8d711e888205 (patch) | |
| tree | efc7dd9aba7b746777812994c83ba51313191151 /src/bytecode.c | |
| parent | 1f7196bf92ce5d01855c52330b1e865c57f2d5d6 (diff) | |
| download | emacs-1be4d76143bb2d969e7c78f7af4c8d711e888205.tar.gz emacs-1be4d76143bb2d969e7c78f7af4c8d711e888205.zip | |
* bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
that is set but not used.
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index a7be8e26f27..5a62c913a40 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -425,8 +425,8 @@ If the third argument is incorrect, Emacs may crash. */) | |||
| 425 | #ifdef BYTE_CODE_SAFE | 425 | #ifdef BYTE_CODE_SAFE |
| 426 | int const_length = XVECTOR (vector)->size; | 426 | int const_length = XVECTOR (vector)->size; |
| 427 | Lisp_Object *stacke; | 427 | Lisp_Object *stacke; |
| 428 | #endif | ||
| 429 | int bytestr_length; | 428 | int bytestr_length; |
| 429 | #endif | ||
| 430 | struct byte_stack stack; | 430 | struct byte_stack stack; |
| 431 | Lisp_Object *top; | 431 | Lisp_Object *top; |
| 432 | Lisp_Object result; | 432 | Lisp_Object result; |
| @@ -453,7 +453,9 @@ If the third argument is incorrect, Emacs may crash. */) | |||
| 453 | convert them back to the originally intended unibyte form. */ | 453 | convert them back to the originally intended unibyte form. */ |
| 454 | bytestr = Fstring_as_unibyte (bytestr); | 454 | bytestr = Fstring_as_unibyte (bytestr); |
| 455 | 455 | ||
| 456 | #ifdef BYTE_CODE_SAFE | ||
| 456 | bytestr_length = SBYTES (bytestr); | 457 | bytestr_length = SBYTES (bytestr); |
| 458 | #endif | ||
| 457 | vectorp = XVECTOR (vector)->contents; | 459 | vectorp = XVECTOR (vector)->contents; |
| 458 | 460 | ||
| 459 | stack.byte_string = bytestr; | 461 | stack.byte_string = bytestr; |