view runtime/compiler/dot.vim @ 7198:b58e16f9119e v7.4.908

commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 2 17:35:43 2015 +0100 patch 7.4.908 Problem: Build error with MingW compiler. (Cesar Romani) Solution: Change #if into #ifdef.
author Christian Brabandt <cb@256bit.org>
date Mon, 02 Nov 2015 17:45:04 +0100
parents 3fc0f57ecb91
children 80a9b43d299b
line wrap: on
line source

" Vim compiler file
" Compiler:     ATT dot
" Maintainer:	Marcos Macedo <bar4ka@bol.com.br>
" Last Change:	2004 May 16

if exists("current_compiler")
  finish
endif
let current_compiler = "dot"

if exists(":CompilerSet") != 2		" older Vim always used :setlocal
  command -nargs=* CompilerSet setlocal <args>
endif

CompilerSet makeprg=dot\ -T$*\ \"%:p\"\ -o\ \"%:p:r.$*\"