aboutsummaryrefslogtreecommitdiffhomepage
path: root/highlight.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-10 17:54:21 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-10 17:54:38 -0800
commit9b1930588fc98b8fd0d8743692597e015aeff049 (patch)
tree37d0c16aa7414ce79f2d53da10d1974c7e4e9e7f /highlight.h
parent18bb64cd431235f696720150dfbcbfc761e19ef0 (diff)
Migrate errors from array_list_t to wcstring_list_t
Diffstat (limited to 'highlight.h')
-rw-r--r--highlight.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/highlight.h b/highlight.h
index d6ca36b6..d55fa191 100644
--- a/highlight.h
+++ b/highlight.h
@@ -78,7 +78,7 @@
\param pos the cursor position. Used for quote matching, etc.
\param error a list in which a description of each error will be inserted. May be 0, in whcich case no error descriptions will be generated.
*/
-void highlight_shell( const wchar_t *buff, int *color, int pos, array_list_t *error, const env_vars &vars );
+void highlight_shell( const wchar_t *buff, int *color, int pos, wcstring_list_t *error, const env_vars &vars );
/**
Perform syntax highlighting for the text in buff. Matching quotes and paranthesis are highlighted. The result is
@@ -90,7 +90,7 @@ void highlight_shell( const wchar_t *buff, int *color, int pos, array_list_t *er
\param pos the cursor position. Used for quote matching, etc.
\param error a list in which a description of each error will be inserted. May be 0, in whcich case no error descriptions will be generated.
*/
-void highlight_universal( const wchar_t *buff, int *color, int pos, array_list_t *error, const env_vars &vars );
+void highlight_universal( const wchar_t *buff, int *color, int pos, wcstring_list_t *error, const env_vars &vars );
/**
Translate from HIGHLIGHT_* to FISH_COLOR_* according to environment