comparison src/option.c @ 33874:902b7bdf2afb v9.0.2147

patch 9.0.2147: Type check tests fail without the channel feature Commit: https://github.com/vim/vim/commit/3ee25965e4fbf9f44f5fc31d6a827638e409c6f8 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Mon Dec 4 20:31:14 2023 +0100 patch 9.0.2147: Type check tests fail without the channel feature Problem: Type check tests fail without the channel feature Solution: only run tests, when Vim was build with +channel fixes: #13617 closes: #13619 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 10 Dec 2023 15:16:12 +0100
parents 6e4c686b6b5b
children 2f9090601258
comparison
equal deleted inserted replaced
33873:1e3f2847297a 33874:902b7bdf2afb
3928 #ifdef FEAT_QUICKFIX 3928 #ifdef FEAT_QUICKFIX
3929 /* 3929 /*
3930 * Process the updated 'previewwindow' option value. 3930 * Process the updated 'previewwindow' option value.
3931 */ 3931 */
3932 char * 3932 char *
3933 did_set_previewwindow(optset_T *args) 3933 did_set_previewwindow(optset_T *args UNUSED)
3934 { 3934 {
3935 if (!curwin->w_p_pvw) 3935 if (!curwin->w_p_pvw)
3936 return NULL; 3936 return NULL;
3937 3937
3938 // There can be only one window with 'previewwindow' set. 3938 // There can be only one window with 'previewwindow' set.