diff options
| author | Karl Heuer | 1995-07-18 00:30:09 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-07-18 00:30:09 +0000 |
| commit | 67c098ad3cec5a3af8dfa42ac03783024e06d0d6 (patch) | |
| tree | d4fa22b6a36a2ff5aedc7f575792e32f00b34e09 /src/bytecode.c | |
| parent | f2f2356280baa1ee2a31deb6a95ccb2b3d39162c (diff) | |
| download | emacs-67c098ad3cec5a3af8dfa42ac03783024e06d0d6.tar.gz emacs-67c098ad3cec5a3af8dfa42ac03783024e06d0d6.zip | |
(Fbyte_code): Fix variable names in previous change.
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 ac2e3ab1824..ec3fe12e555 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -759,7 +759,7 @@ If the third argument is incorrect, Emacs may crash.") | |||
| 759 | CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v1, 0); | 759 | CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v1, 0); |
| 760 | CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v2, 0); | 760 | CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v2, 0); |
| 761 | #ifdef LISP_FLOAT_TYPE | 761 | #ifdef LISP_FLOAT_TYPE |
| 762 | if (FLOATP (num1) || FLOATP (num2)) | 762 | if (FLOATP (v1) || FLOATP (v2)) |
| 763 | { | 763 | { |
| 764 | double f1, f2; | 764 | double f1, f2; |
| 765 | 765 | ||