From cb85e8ac274e69ba8e8142f92002768cae28c233 Mon Sep 17 00:00:00 2001 From: Bobby Powers Date: Tue, 15 Nov 2011 10:22:34 -0800 Subject: [PATCH] misc/emacs: add delete builtin R=golang-dev, mpimenov, gri CC=golang-dev https://golang.org/cl/5370101 --- misc/emacs/go-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/emacs/go-mode.el b/misc/emacs/go-mode.el index b35013d397..eb4e3425a6 100644 --- a/misc/emacs/go-mode.el +++ b/misc/emacs/go-mode.el @@ -69,7 +69,7 @@ some syntax analysis.") (defvar go-mode-font-lock-keywords - (let ((builtins '("append" "cap" "close" "complex" "copy" "imag" "len" + (let ((builtins '("append" "cap" "close" "complex" "copy" "delete" "imag" "len" "make" "new" "panic" "print" "println" "real" "recover")) (constants '("nil" "true" "false" "iota")) (type-name "\\s *\\(?:[*(]\\s *\\)*\\(?:\\w+\\s *\\.\\s *\\)?\\(\\w+\\)")