annotate runtime/compiler/dot.vim @ 19332:d6e8a9e80be4
v8.2.0224
patch 8.2.0224: compiling :elseif not tested yet
Commit: https://github.com/vim/vim/commit/158906cffc62bc82bc38198c2104967f2a70542c
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 6 20:39:45 2020 +0100
patch 8.2.0224: compiling :elseif not tested yet
Problem: compiling :elseif not tested yet.
Solution: Add test for :elseif. Fix generating jumps.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 06 Feb 2020 20: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.$*\"
|