summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorGravatar Andrew J Cosgriff2016-10-23 19:52:02 +1100
committerGravatar Andrew J Cosgriff2016-10-23 19:52:02 +1100
commitdd61d1d4f5a93488dce12998b4c40623a3396958 (patch)
tree0b59252ce96723c1b644c52cb84c77a4091e6b60
parent8a296e30b01adbc40d1aa9ccde369a972ac5ceab (diff)
downloadnginx-mode-dd61d1d4f5a93488dce12998b4c40623a3396958.tar.gz
nginx-mode-dd61d1d4f5a93488dce12998b4c40623a3396958.zip
font-lock-operator-face is gone.\n\nFixes #14.
-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)))
;;;;##########################################################################