aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorPo Lu2023-03-02 20:00:06 +0800
committerPo Lu2023-03-02 20:00:06 +0800
commita6a586ffc1bd302e30d80cb88b06e1e7e1573f63 (patch)
tree33877aa5d5c405e3943c075acdef9bd94d8d9faf /src/bytecode.c
parent42674a71446e2ce1ba1f3226c978c7546334d4ea (diff)
parent8d5d7509b0a2c248084fa349b0b188d4de4af804 (diff)
downloademacs-a6a586ffc1bd302e30d80cb88b06e1e7e1573f63.tar.gz
emacs-a6a586ffc1bd302e30d80cb88b06e1e7e1573f63.zip
Merge remote-tracking branch 'origin/master' into feature/android
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 {