Mercurial > vim
view src/proto/help.pro @ 31443:9ae3720f9bd9 v9.0.1054
patch 9.0.1054: object member can't get type from initializer
Commit: https://github.com/vim/vim/commit/74e1274edf632b83d2948a2a2d519589eff52997
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Dec 13 21:14:28 2022 +0000
patch 9.0.1054: object member can't get type from initializer
Problem: Object member can't get type from initializer.
Solution: If there is no type specified try to use the type of the
initializer. Check for a valid type.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 13 Dec 2022 22:15:03 +0100 |
parents | f103da6ba95f |
children |
line wrap: on
line source
/* help.c */ void ex_help(exarg_T *eap); void ex_helpclose(exarg_T *eap); char_u *check_help_lang(char_u *arg); int help_heuristic(char_u *matched_string, int offset, int wrong_case); int find_help_tags(char_u *arg, int *num_matches, char_u ***matches, int keep_lang); void cleanup_help_tags(int num_file, char_u **file); void prepare_help_buffer(void); void fix_help_buffer(void); void ex_exusage(exarg_T *eap); void ex_viusage(exarg_T *eap); void ex_helptags(exarg_T *eap); /* vim: set ft=c : */