comparison src/option.c @ 32120:97255d909654 v9.0.1391

patch 9.0.1391: "clear" macros are not always used Commit: https://github.com/vim/vim/commit/960dcbd098c761dd623bec9492d5391ff6e8dceb Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Tue Mar 7 17:45:11 2023 +0000 patch 9.0.1391: "clear" macros are not always used Problem: "clear" macros are not always used. Solution: Use ALLOC_ONE, VIM_CLEAR, CLEAR_POINTER and CLEAR_FIELD in more places. (Yegappan Lakshmanan, closes #12104)
author Bram Moolenaar <Bram@vim.org>
date Tue, 07 Mar 2023 19:00:04 +0100
parents 39f4126d2a0d
children f3987fde6dea
comparison
equal deleted inserted replaced
32119:241396c61b36 32120:97255d909654
7145 // or to a help buffer. 7145 // or to a help buffer.
7146 if (dont_do_help) 7146 if (dont_do_help)
7147 { 7147 {
7148 buf->b_p_isk = save_p_isk; 7148 buf->b_p_isk = save_p_isk;
7149 #ifdef FEAT_VARTABS 7149 #ifdef FEAT_VARTABS
7150 if (p_vts && p_vts != empty_option && !buf->b_p_vts_array) 7150 if (p_vts && *p_vts != NUL && !buf->b_p_vts_array)
7151 (void)tabstop_set(p_vts, &buf->b_p_vts_array); 7151 (void)tabstop_set(p_vts, &buf->b_p_vts_array);
7152 else 7152 else
7153 buf->b_p_vts_array = NULL; 7153 buf->b_p_vts_array = NULL;
7154 #endif 7154 #endif
7155 } 7155 }
7161 buf->b_p_ts = p_ts; 7161 buf->b_p_ts = p_ts;
7162 COPY_OPT_SCTX(buf, BV_TS); 7162 COPY_OPT_SCTX(buf, BV_TS);
7163 #ifdef FEAT_VARTABS 7163 #ifdef FEAT_VARTABS
7164 buf->b_p_vts = vim_strsave(p_vts); 7164 buf->b_p_vts = vim_strsave(p_vts);
7165 COPY_OPT_SCTX(buf, BV_VTS); 7165 COPY_OPT_SCTX(buf, BV_VTS);
7166 if (p_vts && p_vts != empty_option && !buf->b_p_vts_array) 7166 if (p_vts && *p_vts != NUL && !buf->b_p_vts_array)
7167 (void)tabstop_set(p_vts, &buf->b_p_vts_array); 7167 (void)tabstop_set(p_vts, &buf->b_p_vts_array);
7168 else 7168 else
7169 buf->b_p_vts_array = NULL; 7169 buf->b_p_vts_array = NULL;
7170 #endif 7170 #endif
7171 buf->b_help = FALSE; 7171 buf->b_help = FALSE;