diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-05 16:11:01 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-05 16:11:01 -0500 |
commit | 8944eb64682f626f76b9b204a58afc8fa5d0a522 (patch) | |
tree | a82fabd9a7c0e90d72a1d3368935ecc54cafa575 /ted.c | |
parent | f80661e0958c1fa70b2eea9dc2a9b89e86c802d3 (diff) |
fix some little problems with the file selector
Diffstat (limited to 'ted.c')
-rw-r--r-- | ted.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -233,7 +233,7 @@ static bool ted_open_file(Ted *ted, char const *filename) { TextBuffer *buffers = ted->buffers; for (u16 i = 0; i < TED_MAX_BUFFERS; ++i) { if (buffers_used[i]) { - if (buffers[i].filename && streq(path, buffers[i].filename)) { + if (buffers[i].filename && paths_eq(path, buffers[i].filename)) { buffer_reload(&buffers[i]); // make sure buffer is up to date with the file ted_switch_to_buffer(ted, &buffers[i]); return true; |