Browse Source

Fix OSC address input not accept empty line

master
cancel 5 years ago
parent
commit
9cf12a3c4d
  1. 2
      term_util.c

2
term_util.c

@ -704,5 +704,5 @@ bool qform_get_text_line(Qform const *qf, int id, oso **out) {
return false; return false;
Usz trimmed = size_without_trailing_spaces(buf); Usz trimmed = size_without_trailing_spaces(buf);
osoputlen(out, buf, trimmed); osoputlen(out, buf, trimmed);
return osolen(*out) > 0; return true;
} }

Loading…
Cancel
Save