aboutsummaryrefslogtreecommitdiff
path: root/src/lexer
diff options
context:
space:
mode:
authornass1pro <nass1pro@gmail.com>2020-07-17 13:10:18 +0200
committernass1pro <nass1pro@gmail.com>2020-07-17 13:10:18 +0200
commit59021e0ab085b2c732a13b30a105b1dcc9670a62 (patch)
tree2383071a50e6184369353e2e4ce5b307c60e39f1 /src/lexer
parent4de693c732ed836d038983ffe208994a6b53ab8c (diff)
downloadminishell-m_test.tar.gz
minishell-m_test.tar.bz2
minishell-m_test.zip
testm_test
Diffstat (limited to 'src/lexer')
-rw-r--r--src/lexer/lexer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lexer/lexer.c b/src/lexer/lexer.c
index 32b9eeb..935a12e 100644
--- a/src/lexer/lexer.c
+++ b/src/lexer/lexer.c
@@ -6,7 +6,7 @@
/* By: nahaddac <nahaddac@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/07/16 08:18:25 by nahaddac #+# #+# */
-/* Updated: 2020/07/17 13:06:17 by nahaddac ### ########.fr */
+/* Updated: 2020/07/17 13:08:39 by nahaddac ### ########.fr */
/* */
/* ************************************************************************** */
@@ -24,7 +24,6 @@ int len_is_not_sep(char *input)
i +=2;
if (input[i] == '\\')
i += len_is_not_sep(&input[i]);
-
}
if (lexer_sep(input[i]))
return(i);