Mercurial > vim
annotate runtime/syntax/hostsaccess.vim @ 32790:fbe3a843b6af v9.0.1711
patch 9.0.1711: dead code in charset.c
Commit: https://github.com/vim/vim/commit/d3515a1e88cf25c1d5eae8faa965b587a124e687
Author: zeertzjq <zeertzjq@outlook.com>
Date: Mon Jul 3 22:00:04 2023 +0800
patch 9.0.1711: dead code in charset.c
Problem: dead code in charset.c
Solution: remove it
linetabsize_col() calls init_chartabsize_arg() with 0 as "lnum", so
cts.cts_has_prop_with_text is always FALSE.
closes: #PR
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 13 Aug 2023 20:15:03 +0200 |
parents | 43efa4f5a8ea |
children |
rev | line source |
---|---|
2826 | 1 " Vim syntax file |
2 " Language: hosts.deny, hosts.allow configuration files | |
3 " Maintainer: Thilo Six <T.Six@gmx.de> | |
4 " Last Change: 2011 May 01 | |
5 " Derived From: conf.vim | |
6 " Credits: Bram Moolenaar | |
7 " | |
8 " This file is there to get at least a minimal highlighting. | |
9 " A later version may be improved. | |
10 | |
11 | |
12 " Quit when a (custom) syntax file was already loaded | |
13 if exists("b:current_syntax") | |
14 finish | |
15 endif | |
16 | |
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 | 20 |
21 | |
22 let b:current_syntax = "hostsaccess" | |
23 " vim: ts=8 sw=2 |