aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2008-10-27 04:03:35 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2008-10-27 04:03:35 -0400
commit0a99b9700008a6af352c52b3d9667edea2f5d26b (patch)
tree6683bddce134f10dd38c0787cafbd861502c1a40
parenta87d7403532c3a2be43e158e0cf3dd1e8e82f7ab (diff)
downloadtextadept-0a99b9700008a6af352c52b3d9667edea2f5d26b.tar.gz
textadept-0a99b9700008a6af352c52b3d9667edea2f5d26b.zip
Fixed indentation in src/textadept.c
-rw-r--r--src/textadept.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/textadept.c b/src/textadept.c
index a3c85189..071c96f0 100644
--- a/src/textadept.c
+++ b/src/textadept.c
@@ -75,13 +75,13 @@ int main(int argc, char **argv) {
char path[260];
CFURLRef bundle_url = CFBundleCopyBundleURL(bundle);
CFStringRef bundle_path =
- CFURLCopyFileSystemPath(bundle_url, kCFURLPOSIXPathStyle);
- CFStringGetCString(bundle_path, path, 260, kCFStringEncodingASCII);
+ CFURLCopyFileSystemPath(bundle_url, kCFURLPOSIXPathStyle);
+ CFStringGetCString(bundle_path, path, 260, kCFStringEncodingASCII);
char *resources_path = g_strconcat(path, "/Contents/Resources/", NULL);
- textadept_home = static_cast<char*>(resources_path);
- g_free(path);
- CFRelease(bundle_url);
- CFRelease(bundle_path);
+ textadept_home = static_cast<char*>(resources_path);
+ g_free(path);
+ CFRelease(bundle_url);
+ CFRelease(bundle_path);
} else textadept_home = "";
#endif
gtk_init(&argc, &argv);