From 110b2580c04aa9a9d041acbf8ed8daa8eeb76f31 Mon Sep 17 00:00:00 2001 From: Gautier WOJDA Date: Tue, 24 Jan 2017 17:23:28 +0100 Subject: [PATCH] =?UTF-8?q?oubli=C3=A9=20de=20retirer=20une=20ligne=20de?= =?UTF-8?q?=20debug=20x)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 42sh/src/line-editing/readline.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/42sh/src/line-editing/readline.c b/42sh/src/line-editing/readline.c index fc124fb1..cbab0550 100644 --- a/42sh/src/line-editing/readline.c +++ b/42sh/src/line-editing/readline.c @@ -6,7 +6,7 @@ /* By: gwojda +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/12/15 14:19:48 by gwojda #+# #+# */ -/* Updated: 2017/01/24 16:58:30 by gwojda ### ########.fr */ +/* Updated: 2017/01/24 17:23:11 by gwojda ### ########.fr */ /* */ /* ************************************************************************** */ @@ -58,7 +58,6 @@ int ft_readline(void) ft_putstr("\n"); ft_check_quotes(&data_singleton()->line.input, data_singleton()->line.list_beg); ft_check_heredoc(&data_singleton()->line.input); - ft_printf("\nend = %s\n\n", data_singleton()->line.input); if (data_singleton()->line.input) ft_push_back_history(&data_singleton()->line.list_beg, ft_create_history_list(data_singleton()->line.input)); if (tcsetattr(0, TCSANOW, ft_save_stats_term()) == -1)