diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-03-30 21:12:27 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-03-30 21:12:27 +0100 |
commit | c0ceeeb839b8c6bebd3a2abd1c07d40ec3c6edca (patch) | |
tree | 2f51e084f45dbe3437520d32f83e67fb9704aa6b /src/vim.h | |
parent | b4ad3b0deac12674a7773311890b48fd39c6807c (diff) | |
download | vim-git-c0ceeeb839b8c6bebd3a2abd1c07d40ec3c6edca.tar.gz |
patch 8.2.4650: "import autoload" only works with using 'runtimepath'v8.2.4650
Problem: "import autoload" only works with using 'runtimepath'.
Solution: Also support a relative and absolute file name.
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1571,6 +1571,9 @@ typedef UINT32_TYPEDEF UINT32_T; */ #define MAXMAPLEN 50 +// maximum length of a function name, including SID and NUL +#define MAX_FUNC_NAME_LEN 200 + // Size in bytes of the hash used in the undo file. #define UNDO_HASH_SIZE 32 |