summaryrefslogtreecommitdiffstats
path: root/src/p_args.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-09-05 15:57:20 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-09-05 15:57:20 +0200
commit8e8508c068111729d74d43d51bd6f2f9b9e1cdc0 (patch)
tree71ae106df2588c5a25c60b76da47e16a38debf5d /src/p_args.c
parentcommit (diff)
download42-minishell-8e8508c068111729d74d43d51bd6f2f9b9e1cdc0.tar.gz
42-minishell-8e8508c068111729d74d43d51bd6f2f9b9e1cdc0.tar.bz2
42-minishell-8e8508c068111729d74d43d51bd6f2f9b9e1cdc0.tar.xz
42-minishell-8e8508c068111729d74d43d51bd6f2f9b9e1cdc0.tar.zst
42-minishell-8e8508c068111729d74d43d51bd6f2f9b9e1cdc0.zip
In progress
Diffstat (limited to '')
-rw-r--r--src/p_args.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/p_args.c b/src/p_args.c
index 0ec391c..fa01472 100644
--- a/src/p_args.c
+++ b/src/p_args.c
@@ -18,7 +18,6 @@
#include "p_args.h"
#include "p_args_next.h"
#include "p_args_escape.h"
-#include "p_args_quotes.h"
/* ================= */
/* TODO: DELETE THIS */
@@ -140,8 +139,7 @@ static char
p_del_alloced_words(words, to_del);
return (NULL);
}
- p_args_escape_chars(words);
- p_args_quotes(words);
+ p_args_escape_chars_and_quotes(words);
p_print(words);
return (words);
}