From 6c756905574a019df52ad865a81cf97b6e2b6c58 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Mon, 9 Mar 2026 19:03:37 +0000 Subject: Fix wait command interaction with EXECLINE_STRICT el_semicolon() hardcodes failure on EXECLINE_STRICT=2, but we want to accept a no-block interface for wait, so write a separate el_semicolon_nostrict() function and use it in wait. Also use gol in wait, and prepare deprecation of quote chars other than space and null (we can hardcode this np) --- src/include/execline/execline.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/include') diff --git a/src/include/execline/execline.h b/src/include/execline/execline.h index 7fdef51..498dbbc 100644 --- a/src/include/execline/execline.h +++ b/src/include/execline/execline.h @@ -47,6 +47,7 @@ extern void el_execsequence (char const *const *, char const *const *, char cons /* Block unquoting */ extern int el_semicolon (char const **) ; +extern unsigned int el_semicolon_nostrict (char const **) ; /* Value transformation */ -- cgit v1.3.1