shithub: orca

Download patch

ref: 9cf12a3c4dc132c42bff77487ce3a3081b8bdabf
parent: d4b2ef259e41cc779a1549a740773251fe36e011
author: cancel <cancel@cancel.fm>
date: Thu Jan 23 20:17:20 EST 2020

Fix OSC address input not accept empty line

--- a/term_util.c
+++ b/term_util.c
@@ -704,5 +704,5 @@
     return false;
   Usz trimmed = size_without_trailing_spaces(buf);
   osoputlen(out, buf, trimmed);
-  return osolen(*out) > 0;
+  return true;
 }