summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/main.c b/main.c
index 1709a97..8b68662 100644
--- a/main.c
+++ b/main.c
@@ -257,8 +257,11 @@ int main(int argc, char **argv) {
char path[TED_PATH_MAX];
if (starting_filename) {
// get full path to file
- strbuf_printf(path, "%s%s%s", ted->cwd, ted->cwd[strlen(ted->cwd) - 1] == PATH_SEPARATOR ? "" : PATH_SEPARATOR_STR,
- starting_filename);
+ if (!path_is_absolute(starting_filename))
+ strbuf_printf(path, "%s%s%s", ted->cwd, ted->cwd[strlen(ted->cwd) - 1] == PATH_SEPARATOR ? "" : PATH_SEPARATOR_STR,
+ starting_filename);
+ else
+ strbuf_printf(path, "%s", starting_filename);
} else {
strbuf_printf(path, "Untitled");
}