aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-14 13:24:54 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-14 13:24:54 +1300
commit8d26023a5258f0ef432206a7bb42864be4e51d71 (patch)
treee015c69ded03a273ee1eb8acf36f24ceaae3273e
parentMerge branch 'release/v0.17.0' into develop (diff)
parentCorrect stray elseif in auto_undodir.vim (diff)
downloaddotfiles-8d26023a5258f0ef432206a7bb42864be4e51d71.tar.gz
dotfiles-8d26023a5258f0ef432206a7bb42864be4e51d71.zip
Merge branch 'hotfix/v0.17.1' into develop
* hotfix/v0.17.1: Correct stray elseif in auto_undodir.vim Bump version number
-rw-r--r--VERSION4
-rw-r--r--vim/plugin/auto_undodir.vim2
2 files changed, 3 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index 89d1ac52..c60d4f62 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v0.17.0
-Mon Nov 13 21:09:10 UTC 2017
+tejr dotfiles v0.17.1
+Tue Nov 14 00:22:18 UTC 2017
diff --git a/vim/plugin/auto_undodir.vim b/vim/plugin/auto_undodir.vim
index 0cd54cd0..4382fe18 100644
--- a/vim/plugin/auto_undodir.vim
+++ b/vim/plugin/auto_undodir.vim
@@ -36,7 +36,7 @@ if !isdirectory(expand(s:undodir))
" Failing that, use an OS-dependent command
" (Fortunately, Unix and Windows are the only OS types in the world)
elseif has('*shellescape')
- elseif has('unix')
+ if has('unix')
silent! execute '!mkdir -m 0700 -p '
\ . shellescape(expand(s:undodir))
elseif has('win32') || has('win64')