aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-03 22:08:34 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-03 22:08:34 -0800
commit8a46931e3426b724f8502cb77f4a6787e5294c40 (patch)
treec0bad1176e0b45f7a3b86ad26d85c7cd121069ff /builtin.h
parenta9313fc0c31884f07ae4d3e7d24dc03557ba2e13 (diff)
Remove string_buffer_t (!)
Diffstat (limited to 'builtin.h')
-rw-r--r--builtin.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/builtin.h b/builtin.h
index 29b6fa13..a4a34ce9 100644
--- a/builtin.h
+++ b/builtin.h
@@ -89,15 +89,6 @@ enum
#define BUILTIN_END_BLOCK_UNKNOWN _( L"%ls: Unknown block type '%ls'\n" )
#define BUILTIN_ERR_NOT_NUMBER _( L"%ls: Argument '%ls' is not a number\n" )
-/**
- Stringbuffer used to represent standard output
-*/
-//extern string_buffer_t *sb_out;
-
-/**
- Stringbuffer used to represent standard error
-*/
-//extern string_buffer_t *sb_err;
/** Get the string used to represent stdout and stderr */
const wcstring &get_stdout_buffer();
@@ -150,12 +141,12 @@ wcstring_list_t builtin_get_names(void);
void builtin_get_names(std::vector<completion_t> &list);
/**
- Pushes a new set of input/output to the stack. The new stdin is supplied, a new set of output string_buffer_ts is created.
+ Pushes a new set of input/output to the stack. The new stdin is supplied, a new set of output strings is created.
*/
void builtin_push_io( parser_t &parser, int stdin_fd );
/**
- Pops a set of input/output from the stack. The output string_buffer_ts are destroued, but the input file is not closed.
+ Pops a set of input/output from the stack. The output strings are destroued, but the input file is not closed.
*/
void builtin_pop_io(parser_t &parser);