From 8a5ac0b6a9c3f1d92cd86e94143e1f60ad50b355 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Thu, 15 Nov 2012 07:27:05 +0900 Subject: [PATCH] - Fixed error in warning message. --- autoload/neosnippet.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/neosnippet.vim b/autoload/neosnippet.vim index 6bb89cb..f4278d4 100644 --- a/autoload/neosnippet.vim +++ b/autoload/neosnippet.vim @@ -1,7 +1,7 @@ "============================================================================= " FILE: neosnippet.vim " AUTHOR: Shougo Matsushita -" Last Modified: 10 Nov 2012. +" Last Modified: 15 Nov 2012. " License: MIT license {{{ " Permission is hereby granted, free of charge, to any person obtaining " a copy of this software and associated documentation files (the @@ -429,7 +429,7 @@ function! s:parse_snippet_name(snippets_file, line, linenr, dup_check)"{{{ let dup = a:dup_check[snippet_dict.name] call neosnippet#util#print_error(printf( \ 'Warning: %s:%d is overriding `%s` from %s:%d', - \ a:snippets_file, linenr, snippet_dict.name, + \ a:snippets_file, a:linenr, snippet_dict.name, \ dup.action__path, dup.action__line)) call neosnippet#util#print_error(printf( \ 'Please rename the snippet name or use `delete %s`.',