changeset 149:7dfb7799567f

path_manipulation: Fix accidental recursion.
author Augie Fackler <durin42@gmail.com>
date Mon, 28 Sep 2009 15:20:42 -0500
parents c1519e52dcd0
children 616075bfadb5
files .shell.d/00.path_manipulation.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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 () {