summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-01-29 15:46:14 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-01-29 15:46:14 -0500
commit565b5e619ed64f459f1b38b5b94bb72b5b9a714f (patch)
treeb51c3c8cbac11346cafceb7c672222d74c4c7107 /main.c
parent5230cb1533d9e30e9870975cba2cd7e7e86bc22a (diff)
parent6f6ae8af3e3fdee60d38fa12f25ff83097522807 (diff)
merge
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c
index 0ad9672..5b903aa 100644
--- a/main.c
+++ b/main.c
@@ -190,13 +190,13 @@ int main(int argc, char **argv) {
wchar_t *appdata = NULL;
KNOWNFOLDERID id = FOLDERID_LocalAppData;
if (SHGetKnownFolderPath(&id, 0, NULL, &appdata) == S_OK) {
- strbuf_printf(ted_local_data_dir, "%ls" PATH_SEPARATOR_STR "ted", appdata);
+ strbuf_printf(ted->local_data_dir, "%ls" PATH_SEPARATOR_STR "ted", appdata);
CoTaskMemFree(appdata);
}
id = FOLDERID_Profile;
wchar_t *home = NULL;
if (SHGetKnownFolderPath(&id, 0, NULL, &home) == S_OK) {
- strbuf_printf(ted_home, "%ls", home);
+ strbuf_printf(ted->home, "%ls", home);
CoTaskMemFree(home);
}
strbuf_printf(ted->global_data_dir, "C:\\Program Files\\ted");
@@ -229,7 +229,7 @@ int main(int argc, char **argv) {
char *last_backslash = strrchr(executable_path, '\\');
if (last_backslash) {
*last_backslash = '\0';
- ted_search_cwd = streq(cwd, executable_path);
+ ted->search_cwd = streq(cwd, executable_path);
}
}
#else