From: Scott Lawrence Date: Mon, 13 Sep 2010 04:12:18 +0000 (-0400) Subject: go-mode.el: Fix highlighting for 'chan' type X-Git-Tag: weekly.2010-09-15~24 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3b9a024d2999d0a10712e3b02b26f8c07a8aa43e;p=gostls13.git go-mode.el: Fix highlighting for 'chan' type Fixes #1038. R=aclements, rsc CC=golang-dev https://golang.org/cl/2111046 --- 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