From 89cfc441addab2c87454f00bae78b408b436aae9 Mon Sep 17 00:00:00 2001 From: M600 Date: Wed, 22 Mar 2017 20:25:51 +0100 Subject: [PATCH] Remove DG --- 42sh/src/completion/c_find_abspath.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/42sh/src/completion/c_find_abspath.c b/42sh/src/completion/c_find_abspath.c index 6f70604b..9d2da32d 100644 --- a/42sh/src/completion/c_find_abspath.c +++ b/42sh/src/completion/c_find_abspath.c @@ -6,7 +6,7 @@ /* By: gwojda +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2017/03/09 16:54:59 by gwojda #+# #+# */ -/* Updated: 2017/03/22 20:21:43 by alao ### ########.fr */ +/* Updated: 2017/03/22 20:25:19 by alao ### ########.fr */ /* */ /* ************************************************************************** */ @@ -35,7 +35,6 @@ void c_seek_abs_path(t_comp *c, char *current_word) } !c->match ? c->match = ft_strdupi_w(ft_strrchr(c->rcmd, '/') + 1) : 0; c_parser(c, c->cpath, c->match); - DG("cpath [%s] match [%s]", c->cpath, c->match); if (c->lst == NULL || c->lst == c->lst->prev) c_exclusion_folder(c); }