annotate runtime/compiler/pbx.vim @ 11973:aec3df2af27c
v8.0.0867
patch 8.0.0867: job and channel in a dict value not quoted
commit https://github.com/vim/vim/commit/35422f45ba01806d357994f18cb9af64980c67e6
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 5 16:33:56 2017 +0200
patch 8.0.0867: job and channel in a dict value not quoted
Problem: When using a job or channel value as a dict value, when turning it
into a string the quotes are missing.
Solution: Add quotes to the job and channel values. (Yasuhiro Matsumoto,
closes #1930)
author |
Christian Brabandt <cb@256bit.org> |
date |
Sat, 05 Aug 2017 16:45:04 +0200 |
parents |
3fc0f57ecb91 |
children |
e1df51f68736 |
rev |
line source |
7
|
1 " Vim compiler file
|
|
2 " Compiler: Apple Project Builder
|
|
3 " Maintainer: Alexander von Below (public@vonBelow.Com)
|
|
4 " Last Change: 2004 Mar 27
|
|
5
|
|
6 if exists("current_compiler")
|
|
7 finish
|
|
8 endif
|
|
9 let current_compiler = "pbx"
|
|
10
|
|
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
|
|
12 command -nargs=* CompilerSet setlocal <args>
|
|
13 endif
|
|
14
|
|
15 " The compiler actually is gcc, so the errorformat is unchanged
|
|
16 CompilerSet errorformat&
|
|
17
|
|
18 " default make
|
|
19 CompilerSet makeprg=pbxbuild
|
|
20
|