view runtime/compiler/cm3.vim @ 28049:6312a35b254a v8.2.4549

patch 8.2.4549: cannot build with Motif and editres Commit: https://github.com/vim/vim/commit/e2adcf397421d47440d135a97765e1dbe7f824fe Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 12 11:57:25 2022 +0000 patch 8.2.4549: cannot build with Motif and editres Problem: Cannot build with Motif and editres. (Tony Mechelynck) Solution: Fix configure mistake.
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Mar 2022 13:00:04 +0100
parents 9f41bfdbc6fc
children e1df51f68736
line wrap: on
line source

" Vim compiler file
" Compiler:	Critical Mass Modula-3 Compiler
" Maintainer:	Doug Kearns <dougkearns@gmail.com>
" Last Change:	2021 Apr 08

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

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

let s:cpo_save = &cpo
set cpo&vim

" TODO: better handling of Quake errors
CompilerSet makeprg=cm3
CompilerSet errorformat=%D---\ building\ in\ %f\ ---,
		       \%W\"%f\"\\,\ line\ %l:\ warning:\ %m,
		       \%E\"%f\"\\,\ line\ %l:\ %m,
		       \%-G%.%#

let &cpo = s:cpo_save
unlet s:cpo_save