aboutsummaryrefslogtreecommitdiffhomepage
path: root/expand.h
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-01-31 02:51:50 +1000
committerGravatar axel <axel@liljencrantz.se>2006-01-31 02:51:50 +1000
commit521d09b6d0264aaac17b9359ebcb1a0cb6ca8906 (patch)
tree7297a413ff9a5d020c1691e7727e3b22a0bc8175 /expand.h
parent3efb0bf5cf7b799b8df039e4fa3dd593248dc415 (diff)
Add support for calculating completions for arbitrary commands through the 'complete' builtin
darcs-hash:20060130165150-ac50b-5e2ef3bb0298dd5e1a5d6fbdade314cc73ef36f3.gz
Diffstat (limited to 'expand.h')
-rw-r--r--expand.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/expand.h b/expand.h
index a557af8f..6065dc30 100644
--- a/expand.h
+++ b/expand.h
@@ -182,20 +182,6 @@ wchar_t *expand_escape_variable( const wchar_t *in );
*/
wchar_t *expand_tilde(wchar_t *in);
-/**
- Locate 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
- \param flags set this variable to ACCEPT_INCOMPLETE if in tab_completion mode
- \return -1 on syntax error, 0 if no subshells exist and 1 on sucess
-*/
-int expand_locate_subshell( wchar_t *in,
- wchar_t **begin,
- wchar_t **end,
- int flags );
-
/**
Tokenize the specified string into the specified array_list_t.