aboutsummaryrefslogtreecommitdiffhomepage
path: root/env.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-05 14:18:16 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-05 14:18:16 -0800
commitf35d2629d40908bb4a516e9801a42bb47e501012 (patch)
tree3753d4f49aeada7b53e649adb067a2869bf0c0c0 /env.h
parent0e5578204ea8ec906b110c5e710da0c94437b2f7 (diff)
Notice when fish_term256 changes and react to it
Diffstat (limited to 'env.h')
-rw-r--r--env.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/env.h b/env.h
index a286df6d..c43efba1 100644
--- a/env.h
+++ b/env.h
@@ -81,9 +81,7 @@ void env_destroy();
* ENV_INVALID, the variable name or mode was invalid
*/
-int env_set( const wchar_t *key,
- const wchar_t *val,
- int mode );
+int env_set(const wchar_t *key, const wchar_t *val, int mode);
/**
@@ -145,7 +143,7 @@ int env_exist( const wchar_t *key, int mode );
\return zero if the variable existed, and non-zero if the variable did not exist
*/
-int env_remove( const wchar_t *key, int mode );
+int env_remove( const wcstring &key, int mode );
/**
Push the variable stack. Used for implementing local variables for functions and for-loops.