summaryrefslogtreecommitdiff
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-07-18 00:30:09 +0000
committerKarl Heuer <kwzh@gnu.org>1995-07-18 00:30:09 +0000
commit57e90deb4e241b77b1dd3fd5db210e9796dc844e (patch)
tree61f4239e2be74eafbf4fa7414afbc6172b486e45 /src/bytecode.c
parent633e228b10a5282bae926334c60cc1eb9d8959ec (diff)
downloademacs-57e90deb4e241b77b1dd3fd5db210e9796dc844e.tar.gz
(Fbyte_code): Fix variable names in previous change.
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
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.")
CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v1, 0);
CHECK_NUMBER_OR_FLOAT_COERCE_MARKER (v2, 0);
#ifdef LISP_FLOAT_TYPE
- if (FLOATP (num1) || FLOATP (num2))
+ if (FLOATP (v1) || FLOATP (v2))
{
double f1, f2;