comparison src/fold.c @ 3263:320cc46d0eb0 v7.3.400

updated for version 7.3.400 Problem: Compiler warnings for shadowed variables. Solution: Remove or rename the variables.
author Bram Moolenaar <bram@vim.org>
date Tue, 10 Jan 2012 22:26:17 +0100
parents 3f822e54765c
children 70eff6af1158
comparison
equal deleted inserted replaced
3262:373b8b5fee95 3263:320cc46d0eb0
1031 /* foldInitWin() {{{2 */ 1031 /* foldInitWin() {{{2 */
1032 /* 1032 /*
1033 * Init the fold info in a new window. 1033 * Init the fold info in a new window.
1034 */ 1034 */
1035 void 1035 void
1036 foldInitWin(newwin) 1036 foldInitWin(new_win)
1037 win_T *newwin; 1037 win_T *new_win;
1038 { 1038 {
1039 ga_init2(&newwin->w_folds, (int)sizeof(fold_T), 10); 1039 ga_init2(&new_win->w_folds, (int)sizeof(fold_T), 10);
1040 } 1040 }
1041 1041
1042 /* find_wl_entry() {{{2 */ 1042 /* find_wl_entry() {{{2 */
1043 /* 1043 /*
1044 * Find an entry in the win->w_lines[] array for buffer line "lnum". 1044 * Find an entry in the win->w_lines[] array for buffer line "lnum".