summaryrefslogtreecommitdiff
path: root/runtime/syntax/awk.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-02-04 21:59:01 +0100
committerBram Moolenaar <Bram@vim.org>2012-02-04 21:59:01 +0100
commitb8ff1fb5eb60511f21c425e09c473105ffff02cb (patch)
tree5af8b9f0ccc3a2147ef884c4d8d9f7149833bbe8 /runtime/syntax/awk.vim
parent7f85d297dc80666946f7940bc06e45cc2aa79b5d (diff)
downloadvim-git-b8ff1fb5eb60511f21c425e09c473105ffff02cb.tar.gz
updated for version 7.3.423v7.3.423
Problem: Small mistakes in comments, proto and indent. Solution: Fix the mistakes. Also update runtime files
Diffstat (limited to 'runtime/syntax/awk.vim')
-rw-r--r--runtime/syntax/awk.vim10
1 files changed, 8 insertions, 2 deletions
diff --git a/runtime/syntax/awk.vim b/runtime/syntax/awk.vim
index 8c1f182eb..6f1f56142 100644
--- a/runtime/syntax/awk.vim
+++ b/runtime/syntax/awk.vim
@@ -1,7 +1,7 @@
" Vim syntax file
" Language: awk, nawk, gawk, mawk
-" Maintainer: Antonio Colombo <azc10@yahoo.com>
-" Last Change: 2005 Mar 16
+" Maintainer: Antonio Colombo <azc100@gmail.com>
+" Last Change: 2012 Jan 31
" AWK ref. is: Alfred V. Aho, Brian W. Kernighan, Peter J. Weinberger
" The AWK Programming Language, Addison-Wesley, 1988
@@ -25,6 +25,9 @@ elseif exists("b:current_syntax")
finish
endif
+let s:cpo_save = &cpo
+set cpo&vim
+
" A bunch of useful Awk keywords
" AWK ref. p. 188
syn keyword awkStatement break continue delete exit
@@ -213,4 +216,7 @@ endif
let b:current_syntax = "awk"
+let &cpo = s:cpo_save
+unlet s:cpo_save
+
" vim: ts=8