diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-12-19 18:26:45 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-12-19 18:26:45 +1300 |
commit | 7124a05b1ed53ccc1bae6f4dc99a1fe78c474512 (patch) | |
tree | cb9e30161d6fdcbd1457e27e043d08669394b4f1 | |
parent | First version, spun out from tejr dotfiles v8.7.0 (diff) | |
parent | Bump VERSION (diff) | |
download | vim-spellfile-local-7124a05b1ed53ccc1bae6f4dc99a1fe78c474512.tar.gz vim-spellfile-local-7124a05b1ed53ccc1bae6f4dc99a1fe78c474512.zip |
Merge branch 'hotfix/v0.1.1'v0.1.1
* hotfix/v0.1.1:
Fix mixed-up parameters for mkdir()
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | autoload/spellfile_local.vim | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1 +1 @@ -0.1.0 +0.1.1 diff --git a/autoload/spellfile_local.vim b/autoload/spellfile_local.vim index 7dbe8fb..7d1877e 100644 --- a/autoload/spellfile_local.vim +++ b/autoload/spellfile_local.vim @@ -141,7 +141,7 @@ function! s:Path(dir, lang, encoding, ...) abort " let ds = join(dir, '/') if ds !~# '^\f\+$' - \ || filewritable(ds) != 2 && !mkdir(ds, '0700', 'p') + \ || filewritable(ds) != 2 && !mkdir(ds, 'p', 0700) return endif |