aboutsummaryrefslogtreecommitdiff
path: root/src/lexer/trim.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lexer/trim.c')
-rw-r--r--src/lexer/trim.c21
1 files changed, 1 insertions, 20 deletions
diff --git a/src/lexer/trim.c b/src/lexer/trim.c
index f47aa6d..6c435d5 100644
--- a/src/lexer/trim.c
+++ b/src/lexer/trim.c
@@ -1,25 +1,6 @@
#include "lexer.h"
-t_ftlst *stick_parent(t_ftlst *lst)
-{
- t_ftlst *first;
- t_token *tk;
-
- first = lst;
- while (lst != NULL)
- {
- tk = lst->data;
- if (tk->tag & TAG_PARENT_OPEN || tk->tag & TAG_PARENT_CLOSE)
- {
- if (ft_strlen(tk->content) >= 2)
- tk->tag = tk->tag | TAG_STICK;
- }
- lst = lst->next;
- }
- return (first);
-}
-
char *del_space(t_token *tk)
{
int i;
@@ -83,5 +64,5 @@ t_ftlst *lexe_trim_out(t_ftlst *lst)
}
lst = lst->next;
}
- return (stick_parent(first));
+ return (first);
}