aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser_keywords.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-05-07 12:55:13 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-05-07 12:55:13 -0700
commit1a264ab7c20cbd0e20eef3e3d83fedb7b69c163d (patch)
treea31c3d95477c76ac190bf15d8346d4db5ae64224 /parser_keywords.h
parent99b51ce6eadcc93027c6edf9a0def836ac050870 (diff)
Made tests compile again
Renamed autosuggest_handle_special to autosuggest_special_validate_from_history Began work to factor autosuggest_special_validate_from_history together with autosuggest_suggest_special
Diffstat (limited to 'parser_keywords.h')
-rw-r--r--parser_keywords.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/parser_keywords.h b/parser_keywords.h
index c2cc15d9..9af1e230 100644
--- a/parser_keywords.h
+++ b/parser_keywords.h
@@ -7,15 +7,14 @@ Functions having to do with parser keywords, like testing if a function is a blo
#define FISH_PARSER_KEYWORD_H
/**
- Return valuse for parser_keywords_is_switch()
+ Return values for parser_keywords_is_switch()
*/
enum
{
ARG_NON_SWITCH,
ARG_SWITCH,
ARG_SKIP
-}
- ;
+};