From e29d3983994e202d11caef24fc38eef641e9f669 Mon Sep 17 00:00:00 2001 From: john muhl Date: Mon, 22 Dec 2025 18:37:12 -0600 Subject: [PATCH] Fontify 'table.create' in 'lua-mode' * lisp/progmodes/lua-mode.el (lua--builtins): Add 'create' to list of built-in methods. (Bug#80057) --- lisp/progmodes/lua-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/progmodes/lua-mode.el b/lisp/progmodes/lua-mode.el index 622adc1d29d..bc042599759 100644 --- a/lisp/progmodes/lua-mode.el +++ b/lisp/progmodes/lua-mode.el @@ -354,8 +354,8 @@ traceback location." ("string" . ("byte" "char" "dump" "find" "format" "gmatch" "gsub" "len" "lower" "match" "pack" "packsize" "rep" "reverse" "sub" "unpack" "upper")) - ("table" . ("concat" "insert" "maxn" "move" "pack" "remove" "sort" - "unpack")) + ("table" . ("concat" "create" "insert" "maxn" "move" "pack" "remove" + "sort" "unpack")) ("utf8" . ("char" "charpattern" "codepoint" "codes" "len" "offset")))))