From fe0b6fc74a49096a2fc65333a246da9574a5a11c Mon Sep 17 00:00:00 2001 From: Otto Modinos Date: Wed, 12 Feb 2014 01:31:33 +0200 Subject: [PATCH] Add missing 'a:' prefix to fallback --- autoload/thematic/gui.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/thematic/gui.vim b/autoload/thematic/gui.vim index 25cff9d..30d31ca 100644 --- a/autoload/thematic/gui.vim +++ b/autoload/thematic/gui.vim @@ -66,7 +66,7 @@ function! s:getSize(font, fallback) " Add zero to convert to integer. let l:size = 0 + substitute(l:decodedFont, s:regex, '\2', '') else - let l:size = 0 + fallback + let l:size = 0 + a:fallback endif return l:size endfunction