From 543b9dd5e1ac26dc8f1c485eb2a370d5b37bc7a7 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Thu, 30 Jun 2022 11:02:55 -0600 Subject: Create new regnode type ANYOFH This previously was lumped in with plain ANYOF. A future commit will be easier if this is separated out, and doing so leads to some simplifications, and from having to know all the OPs in this type. --- regnodes.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'regnodes.h') diff --git a/regnodes.h b/regnodes.h index fdb7ae0d9b..50f11899c8 100644 --- a/regnodes.h +++ b/regnodes.h @@ -1472,10 +1472,10 @@ EXTCONST U8 PL_regkind[] = { ANYOF, /* ANYOFD */ ANYOF, /* ANYOFL */ ANYOF, /* ANYOFPOSIXL */ - ANYOF, /* ANYOFH */ - ANYOF, /* ANYOFHb */ - ANYOF, /* ANYOFHr */ - ANYOF, /* ANYOFHs */ + ANYOFH, /* ANYOFH */ + ANYOFH, /* ANYOFHb */ + ANYOFH, /* ANYOFHr */ + ANYOFH, /* ANYOFHs */ ANYOFR, /* ANYOFR */ ANYOFR, /* ANYOFRb */ ANYOFM, /* ANYOFM */ -- cgit v1.2.1