Mercurial > vim
view src/proto/termlib.pro @ 26510:3772e454a7fb v8.2.3785
patch 8.2.3785: running CI on MacOS with gcc is not useful
Commit: https://github.com/vim/vim/commit/48c0196378a1fa408ebae4f578a62095d8a80c6f
Author: ichizok <gclient.gaap@gmail.com>
Date: Sat Dec 11 17:34:19 2021 +0000
patch 8.2.3785: running CI on MacOS with gcc is not useful
Problem: Running CI on MacOS with gcc is not useful.
Solution: Only use clang. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/9326) Also build with
normal features.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 11 Dec 2021 18:45:03 +0100 |
parents | 21b0a39d13ed |
children |
line wrap: on
line source
/* termlib.c */ int tgetent(char *tbuf, char *term); int tgetflag(char *id); int tgetnum(char *id); char *tgetstr(char *id, char **buf); char *tgoto(char *cm, int col, int line); int tputs(char *cp, int affcnt, void (*outc)(unsigned int)); /* vim: set ft=c : */