aboutsummaryrefslogtreecommitdiffstats
path: root/autoload
diff options
context:
space:
mode:
authorPeter Odding <peter@peterodding.com>2014-07-01 19:13:39 +0200
committerPeter Odding <peter@peterodding.com>2014-07-01 19:13:39 +0200
commit4aafe1c60ce836cb41270152ba54ba14c48e3dde (patch)
tree9428ac38bbcd45a9c5a23d6ba17a4459c22f6766 /autoload
parent353052018cbf555c6f0b0400a47194824dcf1ea9 (diff)
downloadvim-easytags-4aafe1c60ce836cb41270152ba54ba14c48e3dde.tar.gz
Bug fix for typo introduced in 6c7a66349ec
Diffstat (limited to 'autoload')
-rw-r--r--autoload/xolox/easytags.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim
index 823120a..4c67c4c 100644
--- a/autoload/xolox/easytags.vim
+++ b/autoload/xolox/easytags.vim
@@ -1,6 +1,6 @@
" Vim script
" Author: Peter Odding <peter@peterodding.com>
-" Last Change: June 30, 2014
+" Last Change: July 1, 2014
" URL: http://peterodding.com/code/vim/easytags/
let g:xolox#easytags#version = '3.5'
@@ -426,7 +426,7 @@ function! xolox#easytags#restore_automatic_updates() " {{{2
if exists('s:easytags_auto_update_save')
let g:easytags_auto_update = s:easytags_auto_update_save
unlet s:easytags_auto_update_save
- else
+ endif
endfunction
" Public API for definition of file type specific dynamic syntax highlighting. {{{1