diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-04-16 18:03:19 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-04-16 18:03:19 +0300 |
commit | a74c335ac8fd253f8c67cd4c54adef13dd3c6d73 (patch) | |
tree | 150b724df98ae2d3830c767f1211ea5c296b3814 /main.c | |
parent | 0a59aaa174784ed6ef7166332670b860ee8054bb (diff) | |
parent | 5e746ef5a7fbc34a62641a820156b9837b286630 (diff) | |
download | egawk-a74c335ac8fd253f8c67cd4c54adef13dd3c6d73.tar.gz egawk-a74c335ac8fd253f8c67cd4c54adef13dd3c6d73.tar.bz2 egawk-a74c335ac8fd253f8c67cd4c54adef13dd3c6d73.zip |
Merge branch 'master' into feature/bool
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1202,6 +1202,7 @@ arg_assign(char *arg, bool initing) cp2 = cp + strlen(cp) - 1; // end char if (! do_traditional + && strlen(cp) >= 3 // '@/' doesn't do it. && cp[0] == '@' && cp[1] == '/' && *cp2 == '/') { // typed regex size_t len = strlen(cp) - 3; |