diff options
author | pommicket <pommicket@gmail.com> | 2023-10-17 20:51:33 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-10-17 20:51:33 -0400 |
commit | 29282f362d5f663ec3da17b135751f3b9b2bd0fd (patch) | |
tree | 0be73a38dece65c088976b2aace033b21377f973 /ted-internal.h | |
parent | 85c30e8fb21170d602efb53a86c0000a3aa79cbf (diff) |
accept regex for path-specific settings
Diffstat (limited to 'ted-internal.h')
-rw-r--r-- | ted-internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ted-internal.h b/ted-internal.h index 59fca78..af5f2dd 100644 --- a/ted-internal.h +++ b/ted-internal.h @@ -155,7 +155,8 @@ struct Settings { typedef struct { Language language; - char *path; + struct pcre2_real_code_8 *path; + char *path_regex; Settings settings; bool settings_set[sizeof (Settings)]; } Config; |