Expansion: fix: algo was wrong for wildcard

Hopefully, this is a proper fix. This commit serves mainly to save
advancement.
This commit is contained in:
Jérôme Guélen 2025-03-15 15:44:23 +01:00
parent 1766e8d1ba
commit fc12d8e057
No known key found for this signature in database
5 changed files with 129 additions and 81 deletions

View file

@ -50,6 +50,8 @@ srcs = \
src/parser/wordlist/wordlist_copy.c \
src/parser/wordlist/wordlist_debug.c \
src/parser/wordlist/wordlist_idx.c \
src/parser/wordlist/wordlist_quicksort.c \
src/parser/wordlist/wordlist_utils.c \
src/parser/wordsplit/rule_utils.c \
src/parser/wordsplit/tokenizing_1_5.c \
src/parser/wordsplit/tokenizing_6_10.c \
@ -59,10 +61,14 @@ srcs = \
src/postprocess/redirections/redirection_list.c \
src/postprocess/redirections/redirection_parsing.c \
src/postprocess/redirections/redirection_type.c \
src/subst/path_split.c \
src/subst/replace_substr.c \
src/subst/simple_filename_exp.c \
src/subst/variable_subst.c \
src/subst/variable_subst_utils.c \
src/subst/wildcard_exp.c \
src/subst/wildcard_exp_utils.c \
src/subst/wildcard_exp_utils2.c \
objs = $(srcs:.c=.o)
export objs