=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cfg.c,v retrieving revision 1.83 retrieving revision 1.84 diff -c -r1.83 -r1.84 *** src/usr.bin/tmux/cfg.c 2021/04/07 12:50:12 1.83 --- src/usr.bin/tmux/cfg.c 2021/08/21 17:25:32 1.84 *************** *** 1,4 **** ! /* $OpenBSD: cfg.c,v 1.83 2021/04/07 12:50:12 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cfg.c,v 1.84 2021/08/21 17:25:32 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott *************** *** 125,132 **** pr = cmd_parse_from_file(f, &pi); fclose(f); - if (pr->status == CMD_PARSE_EMPTY) - return (0); if (pr->status == CMD_PARSE_ERROR) { cfg_add_cause("%s", pr->error); free(pr->error); --- 125,130 ---- *************** *** 179,186 **** pi.c = c; pr = cmd_parse_from_buffer(buf, len, &pi); - if (pr->status == CMD_PARSE_EMPTY) - return (0); if (pr->status == CMD_PARSE_ERROR) { cfg_add_cause("%s", pr->error); free(pr->error); --- 177,182 ----