annotate runtime/syntax/hostsaccess.vim @ 10658:77d66e9ac0ab v8.0.0219

patch 8.0.0219: ubsan reports errors for overflow commit https://github.com/vim/vim/commit/7a40ea2138102545848ea86a361f1b8dec7552b5 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 22 18:34:57 2017 +0100 patch 8.0.0219: ubsan reports errors for overflow Problem: Ubsan reports errors for integer overflow. Solution: Define macros for minimum and maximum values. Select an expression based on the value. (Mike Williams)
author Christian Brabandt <cb@256bit.org>
date Sun, 22 Jan 2017 18:45:04 +0100
parents 43efa4f5a8ea
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2826
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 " Vim syntax file
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 " Language: hosts.deny, hosts.allow configuration files
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 " Maintainer: Thilo Six <T.Six@gmx.de>
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 " Last Change: 2011 May 01
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 " Derived From: conf.vim
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 " Credits: Bram Moolenaar
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 "
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 " This file is there to get at least a minimal highlighting.
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 " A later version may be improved.
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 " Quit when a (custom) syntax file was already loaded
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 if exists("b:current_syntax")
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14 finish
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 endif
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17 " For a starter we just use conf.vim for highlighting
10048
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 2826
diff changeset
18 runtime! syntax/conf.vim
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 2826
diff changeset
19 unlet b:current_syntax
2826
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22 let b:current_syntax = "hostsaccess"
3c7da93eb7f9 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
23 " vim: ts=8 sw=2