aboutsummaryrefslogtreecommitdiffhomepage
path: root/env.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-25 18:54:49 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-25 18:54:49 -0800
commit38e40862fe338d75b05316f4caf66cf36f4faa6b (patch)
tree18814000157d066ab819e509311a9ba7acc582b9 /env.h
parent5ea78f55f278887b428be5e1397164a85bd93275 (diff)
More work towards autosuggesting completions
Diffstat (limited to 'env.h')
-rw-r--r--env.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/env.h b/env.h
index acef82a6..b78015b1 100644
--- a/env.h
+++ b/env.h
@@ -93,7 +93,7 @@ int env_set( const wchar_t *key,
valid until the next call to env_get(), env_set(), env_push() or
env_pop() takes place.
*/
-const wchar_t *env_get( const wchar_t *key );
+//const wchar_t *env_get( const wchar_t *key );
class env_var_t : public wcstring {
private:
@@ -153,7 +153,7 @@ void env_pop();
char **env_export_arr( int recalc );
/**
- Insert all variable names into l. These are not copies of the strings and should not be freed after use.
+ Returns all variable names.
*/
wcstring_list_t env_get_names( int flags );