aboutsummaryrefslogtreecommitdiffhomepage
path: root/parse_util.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2011-12-26 19:18:46 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2011-12-26 19:18:46 -0800
commit8d2f107d61a8b0e099ab9a59b8a32c236da5a5fc (patch)
tree89f718ab74f8400332534aee237c6f925348f05c /parse_util.h
parent3f16ace6784caab54fb054836ee93902e9701913 (diff)
Some changes to migrate towards C++ and a multithreaded model
Diffstat (limited to 'parse_util.h')
-rw-r--r--parse_util.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/parse_util.h b/parse_util.h
index 2b888daa..a1b0b74e 100644
--- a/parse_util.h
+++ b/parse_util.h
@@ -11,7 +11,7 @@
/**
Find the beginning and end of the first subshell in the specified string.
-
+
\param in the string to search for subshells
\param begin the starting paranthesis of the subshell
\param end the ending paranthesis of the subshell
@@ -19,8 +19,8 @@
\return -1 on syntax error, 0 if no subshells exist and 1 on sucess
*/
-int parse_util_locate_cmdsubst( const wchar_t *in,
- wchar_t **begin,
+int parse_util_locate_cmdsubst( const wchar_t *in,
+ wchar_t **begin,
wchar_t **end,
int flags );
@@ -38,7 +38,7 @@ int parse_util_locate_cmdsubst( const wchar_t *in,
*/
void parse_util_cmdsubst_extent( const wchar_t *buff,
int cursor_pos,
- wchar_t **a,
+ wchar_t **a,
wchar_t **b );
/**
@@ -51,7 +51,7 @@ void parse_util_cmdsubst_extent( const wchar_t *buff,
*/
void parse_util_process_extent( const wchar_t *buff,
int cursor_pos,
- wchar_t **a,
+ wchar_t **a,
wchar_t **b );
@@ -65,7 +65,7 @@ void parse_util_process_extent( const wchar_t *buff,
*/
void parse_util_job_extent( const wchar_t *buff,
int cursor_pos,
- wchar_t **a,
+ wchar_t **a,
wchar_t **b );
/**
@@ -84,7 +84,7 @@ void parse_util_token_extent( const wchar_t *buff,
int cursor_pos,
wchar_t **tok_begin,
wchar_t **tok_end,
- wchar_t **prev_begin,
+ wchar_t **prev_begin,
wchar_t **prev_end );
@@ -115,7 +115,7 @@ int parse_util_get_offset( wchar_t *buff, int line, int line_offset );
not load it multiple times unless it's timestamp changes or
parse_util_unload is called.
- Autoloading one file may unload another.
+ Autoloading one file may unload another.
\param cmd the filename to search for. The suffix '.fish' is always added to this name
\param path_var_name the environment variable giving the search path
@@ -153,7 +153,7 @@ int parse_util_unload( const wchar_t *cmd,
/**
Set the argv environment variable to the specified null-terminated
- array of strings.
+ array of strings.
*/
void parse_util_set_argv( wchar_t **argv, array_list_t *named_arguments );