1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-17 00:30:37 -08:00

Fontify 'table.create' in 'lua-mode'

* lisp/progmodes/lua-mode.el (lua--builtins): Add 'create' to list
of built-in methods.  (Bug#80057)
This commit is contained in:
john muhl 2025-12-22 18:37:12 -06:00 committed by Eli Zaretskii
parent 692f742caf
commit e29d398399

View file

@ -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")))))