Author: grosser
Date: Sat Jan 19 18:42:16 2013
New Revision: 172934

URL: http://llvm.org/viewvc/llvm-project?rev=172934&view=rev
Log:
[cindex.py]: Use spaces instead of tabs

The tabs slipped in accidentally.

Modified:
    cfe/trunk/bindings/python/clang/cindex.py

Modified: cfe/trunk/bindings/python/clang/cindex.py
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/bindings/python/clang/cindex.py?rev=172934&r1=172933&r2=172934&view=diff
==============================================================================
--- cfe/trunk/bindings/python/clang/cindex.py (original)
+++ cfe/trunk/bindings/python/clang/cindex.py Sat Jan 19 18:42:16 2013
@@ -1693,8 +1693,8 @@
 
     @CachedProperty
     def spelling(self):
-       if self.__kindNumber in SpellingCache:
-               return SpellingCache[self.__kindNumber]
+        if self.__kindNumber in SpellingCache:
+                return SpellingCache[self.__kindNumber]
         return conf.lib.clang_getCompletionChunkText(self.cs, 
self.key).spelling
 
     # We do not use @CachedProperty here, as the manual implementation is
@@ -1704,7 +1704,7 @@
     def __kindNumber(self):
         if self.__kindNumberCache == -1:
             self.__kindNumberCache = \
-               conf.lib.clang_getCompletionChunkKind(self.cs, self.key)
+                conf.lib.clang_getCompletionChunkKind(self.cs, self.key)
         return self.__kindNumberCache
 
     @CachedProperty


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to