summaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index 2f296b9..dbc78c3 100644
--- a/vimrc
+++ b/vimrc
@@ -229,7 +229,7 @@ function s:roman_numeral(i) " {{{
return repeat('m', i) . numeral
endfunction " }}}
function s:upper_letter(i) " {{{
- if a:i < 26
+ if a:i <= 26
return nr2char(char2nr('A') + a:i - 1)
else
return 'ERROR'