From 67c098ad3cec5a3af8dfa42ac03783024e06d0d6 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 18 Jul 1995 00:30:09 +0000 Subject: [PATCH] (Fbyte_code): Fix variable names in previous change. --- src/bytecode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2