aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION2
-rw-r--r--plugin/toggle_option_flags.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 0d91a54..1d0ba9e 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.3.0
+0.4.0
diff --git a/plugin/toggle_option_flags.vim b/plugin/toggle_option_flags.vim
index 0dad325..fe3e83a 100644
--- a/plugin/toggle_option_flags.vim
+++ b/plugin/toggle_option_flags.vim
@@ -50,7 +50,7 @@ endfunction
function! s:Toggle(option, flag, local)
" Check for spurious option strings, we don't want to :execute anything funny
- if a:option =~# '\m\L'
+ if a:option =~# '\L'
call s:Error('Illegal option name')
return 0
endif