clang-format: Add default fallback style.

Thanks to Michael Schlottke.

git-svn-id: svn://svn.chromium.org/llvm-project/cfe/trunk/tools/clang-format@235162 0b72dbe1-c17f-4bc7-b9db-2b4152be0356
diff --git a/clang-format.py b/clang-format.py
index b07160e..56a6e5d 100644
--- a/clang-format.py
+++ b/clang-format.py
@@ -34,6 +34,7 @@
 # a '.clang-format' or '_clang-format' file to indicate the style that should be
 # used.
 style = 'file'
+fallback_style = None
 if vim.eval('exists("g:clang_format_fallback_style")') == "1":
   fallback_style = vim.eval('g:clang_format_fallback_style')