diff src/scriptfile.c @ 23886:eef0cffbdb94 v8.2.2485

patch 8.2.2485: when sourcing a script again the script version isn't reset Commit: https://github.com/vim/vim/commit/0123cc1e1422003704cc6941916dd75e61fb7976 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 7 17:17:58 2021 +0100 patch 8.2.2485: when sourcing a script again the script version isn't reset Problem: When sourcing a script again the script version isn't reset. Solution: Set sn_version to one when sourcing a script again. Clear sn_save_cpo properly. (closes #7608)
author Bram Moolenaar <Bram@vim.org>
date Sun, 07 Feb 2021 17:30:04 +0100
parents dc3b7a31c29f
children a9ff8368d35f
line wrap: on
line diff
--- a/src/scriptfile.c
+++ b/src/scriptfile.c
@@ -1319,6 +1319,9 @@ do_source(
 	    }
 	// imports can be redefined once
 	mark_imports_for_reload(sid);
+
+	// reset version, "vim9script" may have been added or removed.
+	si->sn_version = 1;
     }
     else
     {
@@ -1457,7 +1460,7 @@ almosttheend:
     if (si->sn_save_cpo != NULL)
     {
 	set_option_value((char_u *)"cpo", 0L, si->sn_save_cpo, 0);
-	CLEAR_POINTER(si->sn_save_cpo);
+	VIM_CLEAR(si->sn_save_cpo);
     }
 
     restore_funccal();