aboutsummaryrefslogtreecommitdiffhomepage
path: root/highlight.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-03-26 10:00:32 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-03-26 10:00:32 -0700
commit7a7fb423b306d3de62ef62ff4c8cbded2cdd0f10 (patch)
tree323305cd876797f26365965a1070fc307e86e84d /highlight.h
parentd533c1b1c8288b738e4fbab2a0d58964d4c66d81 (diff)
Remove some unused function declarations
Diffstat (limited to 'highlight.h')
-rw-r--r--highlight.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/highlight.h b/highlight.h
index 6ef411f9..d411ae36 100644
--- a/highlight.h
+++ b/highlight.h
@@ -75,7 +75,6 @@ struct file_detection_context_t;
\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 wcstring &buffstr, std::vector<highlight_spec_t> &color, size_t pos, wcstring_list_t *error, const env_vars_snapshot_t &vars);
-void highlight_shell_new_parser(const wcstring &buffstr, std::vector<highlight_spec_t> &color, size_t pos, wcstring_list_t *error, const env_vars_snapshot_t &vars);
/**
Perform syntax highlighting for the text in buff. Matching quotes and paranthesis are highlighted. The result is
@@ -125,9 +124,5 @@ enum
typedef unsigned int path_flags_t;
bool is_potential_path(const wcstring &const_path, const wcstring_list_t &directories, path_flags_t flags, wcstring *out_path = NULL);
-/* For testing */
-void highlight_shell_classic(const wcstring &buff, std::vector<highlight_spec_t> &color, size_t pos, wcstring_list_t *error, const env_vars_snapshot_t &vars);
-void highlight_shell_new_parser(const wcstring &buff, std::vector<highlight_spec_t> &color, size_t pos, wcstring_list_t *error, const env_vars_snapshot_t &vars);
-
#endif