diff .shell.d/00.path_manipulation.sh @ 149:7dfb7799567f

path_manipulation: Fix accidental recursion.
author Augie Fackler <durin42@gmail.com>
date Mon, 28 Sep 2009 15:20:42 -0500
parents de6d0a9a7e3f
children c85072e620a8
line wrap: on
line diff
--- 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 () {