summaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2008-04-22 01:10:03 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2008-04-22 01:10:03 -0500
commit8c74cbfeeacf84a136d87fc93f9e041986169934 (patch)
treeddaf91db0e3495a386397d955b31055543b7350b /vimrc
parent93f9635979500a5b4a2e17ad4f07063855aecf30 (diff)
downloadconf-8c74cbfeeacf84a136d87fc93f9e041986169934.tar.gz
conf-8c74cbfeeacf84a136d87fc93f9e041986169934.zip
off by one error
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index e19616f..f027587 100644
--- a/vimrc
+++ b/vimrc
@@ -256,7 +256,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'