diff options
author | pommicket <pommicket@gmail.com> | 2022-11-02 13:29:09 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-11-02 13:29:09 -0400 |
commit | b070e5ce01c829bd101b1e0eda49f1e25d9d125c (patch) | |
tree | f674fcbaad6b565e89d1ba973198024d958cac22 /build.c | |
parent | 26d34216da04a2b91e65a0eeee9200ad808d48ce (diff) |
new settings system bugfixes, use ted_active_settings more
Diffstat (limited to 'build.c')
-rw-r--r-- | build.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ static void build_start(Ted *ted) { bool cargo = false, make = false; strbuf_cpy(ted->build_dir, ted->cwd); - Settings *settings = ted->active_buffer ? buffer_settings(ted->active_buffer) : ted->settings; + Settings *settings = ted_active_settings(ted); char *command = settings->build_default_command; |