~ecs/public-inbox

allow selector groups v1 PROPOSED

Evan Johnston: 1
 allow selector groups

 1 files changed, 1 insertions(+), 1 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.d2evs.net/~ecs/public-inbox/patches/12/mbox | git am -3
Learn more about email & git

[PATCH] allow selector groups Export this patch

---
 selector.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/selector.go b/selector.go
index 5e23c77..cf1d66e 100644
--- a/selector.go
+++ b/selector.go
@@ -17,7 +17,7 @@ func (sel) Execute(args []string, ins []<-chan Datum, out chan Datum) error {
	if len(args) == 0 {
		return errors.New("usage: sel <selector>")
	}
	s, err := cascadia.Parse(strings.Join(args[1:], " "))
	s, err := cascadia.ParseGroup(strings.Join(args[1:], " "))
	if err != nil {
		return err
	}
-- 
2.37.1