annotate runtime/compiler/dot.vim @ 10954:8ff62b4cffae
v8.0.0366
patch 8.0.0366: build fails with tiny features
commit https://github.com/vim/vim/commit/92769c3928bb8a3faa43c533c07ef8476af32ade
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Feb 25 15:41:37 2017 +0100
patch 8.0.0366: build fails with tiny features
Problem: Build fails with tiny features.
Solution: Add #ifdef.
author |
Christian Brabandt <cb@256bit.org> |
date |
Sat, 25 Feb 2017 15:45:03 +0100 |
parents |
3fc0f57ecb91 |
children |
80a9b43d299b |
rev |
line source |
7
|
1 " Vim compiler file
|
|
2 " Compiler: ATT dot
|
|
3 " Maintainer: Marcos Macedo <bar4ka@bol.com.br>
|
|
4 " Last Change: 2004 May 16
|
|
5
|
|
6 if exists("current_compiler")
|
|
7 finish
|
|
8 endif
|
|
9 let current_compiler = "dot"
|
|
10
|
|
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
|
|
12 command -nargs=* CompilerSet setlocal <args>
|
|
13 endif
|
|
14
|
|
15 CompilerSet makeprg=dot\ -T$*\ \"%:p\"\ -o\ \"%:p:r.$*\"
|