Mercurial > vim
view runtime/ftplugin/ld.vim @ 30043:fd855ad74887 v9.0.0359
patch 9.0.0359: error message for wrong argument type is not specific
Commit: https://github.com/vim/vim/commit/8deb2b30c77035bb682ccf80b781455ac1d6038b
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Fri Sep 2 15:15:27 2022 +0100
patch 9.0.0359: error message for wrong argument type is not specific
Problem: Error message for wrong argument type is not specific.
Solution: Include more information in the error. (Yegappan Lakshmanan,
closes #11037)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 02 Sep 2022 16:30:07 +0200 |
parents | 1218c5353e2b |
children | 7c7432a53a6c |
line wrap: on
line source
" Vim filetype plugin file " Language: ld(1) script " Previous Maintainer: Nikolai Weibull <now@bitwi.se> " Latest Revision: 2008-07-09 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 let s:cpo_save = &cpo set cpo&vim let b:undo_ftplugin = "setl com< cms< inc< fo<" setlocal comments=s1:/*,mb:*,ex:*/ commentstring=/*%s*/ include=^\\s*INCLUDE setlocal formatoptions-=t formatoptions+=croql let &cpo = s:cpo_save unlet s:cpo_save