From 3b9a024d2999d0a10712e3b02b26f8c07a8aa43e Mon Sep 17 00:00:00 2001 From: Scott Lawrence Date: Mon, 13 Sep 2010 00:12:18 -0400 Subject: [PATCH] go-mode.el: Fix highlighting for 'chan' type Fixes #1038. R=aclements, rsc CC=golang-dev https://golang.org/cl/2111046 --- 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 0b02219887..2624e87cbd 100644 --- a/misc/emacs/go-mode.el +++ b/misc/emacs/go-mode.el @@ -92,7 +92,7 @@ some syntax analysis.") ;; Map key type (,(concat "\\\\s *\\(?:<-\\)?" type-name) 1 font-lock-type-face) ;; new/make type (,(concat "\\<\\(?:new\\|make\\)\\>\\(?:\\s \\|)\\)*(" type-name) 1 font-lock-type-face) ;; Type conversion