summaryrefslogtreecommitdiffstatshomepage
path: root/nginx-mode.el
diff options
context:
space:
mode:
Diffstat (limited to 'nginx-mode.el')
-rw-r--r--nginx-mode.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/nginx-mode.el b/nginx-mode.el
index 75d074d..8570823 100644
--- a/nginx-mode.el
+++ b/nginx-mode.el
@@ -1,3 +1,4 @@
+
;;; nginx-mode.el --- major mode for editing nginx config files
;; Copyright 2010 Andrew J Cosgriff <andrew@cosgriff.name>
@@ -5,7 +6,7 @@
;; Author: Andrew J Cosgriff <andrew@cosgriff.name>
;; Maintainer: Andrew J Cosgriff <andrew@cosgriff.name>
;; Created: 15 Oct 2010
-;; Version: 1.1.3
+;; Version: 1.1.5
;; Keywords: nginx
;; available from http://github.com/ajc/nginx-mode
@@ -60,7 +61,7 @@
'("\\(\$[0-9]+\\)[^0-9]" 1 font-lock-constant-face)
'("\$[A-Za-z0-9_\-]+" . font-lock-variable-name-face)
'("[ \t]+\\(on\\|off\\);$" 1 font-lock-constant-face)
- '("[A-Za-z0-9_\-]+\\([ \t]+[^ \t\n]+\\)?[ \t]+\\([^ \t\n]+\\)[ \t]+{" 2 font-lock-operator-face)))
+ '("[A-Za-z0-9_\-]+\\([ \t]+[^ \t\n]+\\)?[ \t]+\\([^ \t\n]+\\)[ \t]+{" 2 font-lock-function-name-face)))
;;;;##########################################################################