annotate runtime/ftplugin/protocols.vim @ 23567:cd6b9bc51d58
v8.2.2326
patch 8.2.2326: build error with +eval feature but without +spell
Commit: https://github.com/vim/vim/commit/086ae06862077ba228fcae777f2a0b41416c11bb
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 10 22:56:36 2021 +0100
patch 8.2.2326: build error with +eval feature but without +spell
Problem: Build error with +eval feature but without +spell.
Solution: Adjust #ifdef. (John Marriott)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 10 Jan 2021 23:00:04 +0100 |
parents |
1218c5353e2b |
children |
|
rev |
line source |
389
|
1 " Vim filetype plugin file
|
11062
|
2 " Language: protocols(5) - Internet protocols definition file
|
|
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
4 " Latest Revision: 2008-07-09
|
389
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
1698
|
11 let s:cpo_save = &cpo
|
|
12 set cpo&vim
|
|
13
|
389
|
14 let b:undo_ftplugin = "setl com< cms< fo<"
|
|
15
|
|
16 setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql
|
1698
|
17
|
|
18 let &cpo = s:cpo_save
|
|
19 unlet s:cpo_save
|