# HG changeset patch # User Augie Fackler # Date 1254169242 18000 # Node ID 7dfb7799567f38af8a93101ff369bf48163ce203 # Parent c1519e52dcd007a3a48cf8731f3e5e4fad2d086e path_manipulation: Fix accidental recursion. diff --git a/.shell.d/00.path_manipulation.sh b/.shell.d/00.path_manipulation.sh --- a/.shell.d/00.path_manipulation.sh +++ b/.shell.d/00.path_manipulation.sh @@ -5,7 +5,7 @@ function insert_path_element() { } function remove_path_element() { - remove_path_element $1 PATH + remove_element_from_var $1 PATH } function insert_element_into_var () {