diff options
author | Ian Fan <ianfan0@gmail.com> | 2019-01-12 01:25:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-12 01:25:44 +0000 |
commit | d256182f492c3d8a6803fa2a5880b1283fbe1e4c (patch) | |
tree | f528497ac94d46cff91be9ae9824a84cf968f8b5 /sway/config.c | |
parent | 33d9de88efa7642e20b37493ff60ad0e9689ea47 (diff) | |
parent | 39975ccfb53cf52b33c3d5d4b9aa17e0b50eb09f (diff) |
Merge pull request #3411 from RedSoxFan/fix-brace-detect-seeking
config: do not reset pos when braces found
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c index ea9f23dd..26d22842 100644 --- a/sway/config.c +++ b/sway/config.c @@ -613,7 +613,9 @@ static int detect_brace(FILE *file) { } } free(line); - fseek(file, pos, SEEK_SET); + if (ret == 0) { + fseek(file, pos, SEEK_SET); + } return ret; } |