From 22fe8e6a1720126dacf35f069f50f54232e5938f Mon Sep 17 00:00:00 2001 From: axel Date: Fri, 29 Sep 2006 02:54:05 +1000 Subject: [PATCH] =?UTF-8?q?Fix=20bug=20in=20the=20setenv=20function=20(val?= =?UTF-8?q?ues=20wheren't=20exported!),=20thanks=20to=20Matrin=20B=C3=A4hr?= =?UTF-8?q?=20for=20the=20report.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit darcs-hash:20060928165405-ac50b-5ada00cfc08805677e1932c800ee79d68e35a68b.gz --- share/functions/setenv.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/functions/setenv.fish b/share/functions/setenv.fish index e81869948..8fd652462 100644 --- a/share/functions/setenv.fish +++ b/share/functions/setenv.fish @@ -1,4 +1,4 @@ function setenv -d (N_ 'Set global variable. Alias for set -g, made for csh compatibility') - set -g $argv + set -gx $argv end