diff src/optionstr.c @ 31845:2ce8e7c4acf4 v9.0.1255

patch 9.0.1255: changing 'virtualedit' does not have immediate effect Commit: https://github.com/vim/vim/commit/8fe5b9c8c1223861cec0484ccc031858ae08d107 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 28 16:37:37 2023 +0000 patch 9.0.1255: changing 'virtualedit' does not have immediate effect Problem: Changing 'virtualedit' does not have immediate effect. Solution: Correct how is checked for a changed value. (closes https://github.com/vim/vim/issues/11878)
author Bram Moolenaar <Bram@vim.org>
date Sat, 28 Jan 2023 17:45:03 +0100
parents 5614e76f3dee
children 8b15e4161605
line wrap: on
line diff
--- a/src/optionstr.c
+++ b/src/optionstr.c
@@ -2078,7 +2078,7 @@ did_set_string_option(
 	{
 	    if (opt_strings_flags(ve, p_ve_values, flags, TRUE) != OK)
 		errmsg = e_invalid_argument;
-	    else if (STRCMP(p_ve, oldval) != 0)
+	    else if (STRCMP(ve, oldval) != 0)
 	    {
 		// Recompute cursor position in case the new 've' setting
 		// changes something.