commit | ded5f1bed7ff2d138b3ee0f9610d17290b62692d | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Nov 10 17:33:29 2018 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Nov 10 17:33:29 2018 +0100 |
tree | 54727bd70279df4fadc4b8f4701577ac33282ef5 | |
parent | 1bbb61948342b5cf6e363629f145c65eb455c388 [diff] [blame] |
patch 8.1.0515: reloading a script gives errors for existing functions Problem: Reloading a script gives errors for existing functions. Solution: Allow redefining a function once when reloading a script.
diff --git a/src/structs.h b/src/structs.h index a0c06b5..cd9b5a5 100644 --- a/src/structs.h +++ b/src/structs.h
@@ -84,6 +84,7 @@ */ typedef struct { scid_T sc_sid; // script ID + int sc_seq; // sourcing sequence number linenr_T sc_lnum; // line number } sctx_T;