Mercurial > vim
view src/proto/hardcopy.pro @ 11201:87ef152072d4 v8.0.0487
patch 8.0.0487: the autocmd test hangs on MS-Windows
commit https://github.com/vim/vim/commit/651e4056aceaa580df9e2fff575a6402d5c6f0dc
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Mar 19 18:34:46 2017 +0100
patch 8.0.0487: the autocmd test hangs on MS-Windows
Problem: The autocmd test hangs on MS-Windows.
Solution: Skip the hanging tests for now.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 19 Mar 2017 18:45:03 +0100 |
parents | 21b0a39d13ed |
children | 3e9b24eac417 |
line wrap: on
line source
/* hardcopy.c */ char_u *parse_printoptions(void); char_u *parse_printmbfont(void); int prt_header_height(void); int prt_use_number(void); int prt_get_unit(int idx); void ex_hardcopy(exarg_T *eap); void mch_print_cleanup(void); int mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit); int mch_print_begin(prt_settings_T *psettings); void mch_print_end(prt_settings_T *psettings); int mch_print_end_page(void); int mch_print_begin_page(char_u *str); int mch_print_blank_page(void); void mch_print_start_line(int margin, int page_line); int mch_print_text_out(char_u *p, int len); void mch_print_set_font(int iBold, int iItalic, int iUnderline); void mch_print_set_bg(long_u bgcol); void mch_print_set_fg(long_u fgcol); /* vim: set ft=c : */