aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 124348e5b35..74a94859aba 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -789,10 +789,10 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template,
789 Lisp_Object template; 789 Lisp_Object template;
790 Lisp_Object bytecode; 790 Lisp_Object bytecode;
791 if (COMPILEDP (call_fun) 791 if (COMPILEDP (call_fun)
792 // Lexical binding only. 792 /* Lexical binding only. */
793 && (template = AREF (call_fun, COMPILED_ARGLIST), 793 && (template = AREF (call_fun, COMPILED_ARGLIST),
794 FIXNUMP (template)) 794 FIXNUMP (template))
795 // No autoloads. 795 /* No autoloads. */
796 && (bytecode = AREF (call_fun, COMPILED_BYTECODE), 796 && (bytecode = AREF (call_fun, COMPILED_BYTECODE),
797 !CONSP (bytecode))) 797 !CONSP (bytecode)))
798 { 798 {