aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2007-04-22 19:50:26 +1000
committerGravatar axel <axel@liljencrantz.se>2007-04-22 19:50:26 +1000
commit45412f2b1f9b1b97fce85533a9d3fe0309e5c090 (patch)
tree2267da7a24656d95161a900e4a71fceb27df9f94 /builtin.c
parente9790db64a642bedb7c359c634e84980e523e627 (diff)
Move keyword detection code to separate file
darcs-hash:20070422095026-ac50b-77a840e2830370f46b7a48fd8863095d2cd7a5f0.gz
Diffstat (limited to 'builtin.c')
-rw-r--r--builtin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin.c b/builtin.c
index 0bdab295..065fdb1a 100644
--- a/builtin.c
+++ b/builtin.c
@@ -62,10 +62,10 @@
#include "signal.h"
#include "exec.h"
#include "highlight.h"
-
#include "halloc.h"
#include "halloc_util.h"
#include "parse_util.h"
+#include "parser_keywords.h"
#include "expand.h"
#include "path.h"
@@ -1335,7 +1335,7 @@ static int builtin_function( wchar_t **argv )
res=1;
}
- else if( parser_is_reserved(argv[woptind] ) )
+ else if( parser_keywords_is_reserved(argv[woptind] ) )
{
sb_printf( sb_err,