fix function rename

This commit is contained in:
zongor 2025-09-06 20:30:58 -07:00
parent 544ae6073e
commit bfec1109a8
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
;;;
(defvar undar-keywords
'("fn" "to" "in" "is" "as" "use" "if" "else" "default"
'("function" "to" "in" "is" "as" "use" "if" "else" "default"
"for" "try" "catch" "while" "do" "exit" "switch"
"return" "const" "type" "this" "yield" "case"
"assert" "break" "mod" "not" "and" "or" "print" "let"
@ -79,7 +79,7 @@
st)
"Syntax table for Undar mode.")
(define-derived-mode undar-mode prog-mode "UNDAR"
(define-derived-mode undar-mode prog-mode "Undâr"
"Major mode for editing Undar code."
:syntax-table undar-mode-syntax-table
(setq-local font-lock-defaults '(undar-font-lock-keywords))