remove unnecessary exists check for g:GPGPreferSymmetric

The variable is always set in GPGInit().

Signed-off-by: James McCoy <vega.james@gmail.com>
This commit is contained in:
Simon Ruderich
2015-10-03 16:28:35 +02:00
committed by James McCoy
parent 80fd6e4861
commit 97436d1158

View File

@@ -460,7 +460,7 @@ function s:GPGDecrypt(bufread)
" This is a new file, so force the user to edit the recipient list if " This is a new file, so force the user to edit the recipient list if
" they open a new file and public keys are preferred " they open a new file and public keys are preferred
if (exists("g:GPGPreferSymmetric") && g:GPGPreferSymmetric == 0) if (g:GPGPreferSymmetric == 0)
call s:GPGEditRecipients() call s:GPGEditRecipients()
endif endif