diff options
Diffstat (limited to 'src/p_lblock_next.c')
-rw-r--r-- | src/p_lblock_next.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/p_lblock_next.c b/src/p_lblock_next.c index 03d7f80..d964f11 100644 --- a/src/p_lblock_next.c +++ b/src/p_lblock_next.c @@ -191,26 +191,6 @@ size_t p_subst_alias(char word[], t_bool reset, t_msh *msh) return (0); } -char **p_subst_home(char *words[], t_msh *msh) -{ - char path[PATH_MAX]; - char **ptr; - - u_get_var_value(path, "$HOME", PATH_MAX, msh); - if (path[0] == C_NUL) - return (words); - ptr = words; - while (*ptr != NULL) - { - if (*ptr[0] == '~') - { - *ptr = ft_strsubst(*ptr, "~", path); - } - ptr++; - } - return (words); -} - static char **p_alloc_rewords(char *words[], int64_t j, t_msh *msh) { char **rewords; |