mercurial/osutil.c
changeset 13736 f3c4421e121c
parent 13734 16118b4859a1
child 13748 26f8844d1757
--- a/mercurial/osutil.c	Wed Mar 23 09:34:22 2011 -0500
+++ b/mercurial/osutil.c	Wed Mar 23 09:41:58 2011 -0500
@@ -519,14 +519,14 @@
 
 static PyObject *isgui(PyObject *self)
 {
-    CFDictionaryRef dict = CGSessionCopyCurrentDictionary();
+	CFDictionaryRef dict = CGSessionCopyCurrentDictionary();
 
-    if (dict != NULL) {
-        CFRelease(dict);
-        return Py_True;
-    } else {
-        return Py_False;
-    }
+	if (dict != NULL) {
+		CFRelease(dict);
+		return Py_True;
+	} else {
+		return Py_False;
+	}
 }
 #endif
 
@@ -541,10 +541,10 @@
 "On error, this function may raise either a WindowsError or an IOError."},
 #endif
 #ifdef __APPLE__
-    {
-        "isgui", (PyCFunction)isgui, METH_NOARGS,
-        "Is a CoreGraphics session available?"
-    },
+	{
+		"isgui", (PyCFunction)isgui, METH_NOARGS,
+		"Is a CoreGraphics session available?"
+	},
 #endif
 	{NULL, NULL}
 };