From 809745222efc9f7fb6487cf17afa450a6db8d269 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Mon, 15 Feb 2010 14:03:04 -0500 Subject: [PATCH] Simplify include guard --- plugin/fugitive.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim index d431d70..30af4f6 100644 --- a/plugin/fugitive.vim +++ b/plugin/fugitive.vim @@ -1,7 +1,7 @@ " fugitive.vim - A Git wrapper so awesome, it should be illegal " Maintainer: Tim Pope -if (exists("g:loaded_fugitive") && g:loaded_fugitive) || &cp +if exists('g:loaded_fugitive') || &cp finish endif let g:loaded_fugitive = 1